Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-03-21 05:18:20 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-21 05:18:20 +0300
commit6db1fb197c169633bef9b23542464f89e9c4dbe6 (patch)
tree1b8706cb2e5962b02d0034cfc470a88018a386db /source/blender/editors
parentb4e96550ce595a3f3c50a251033b41c2c117260a (diff)
Cleanup: spelling, doxygen comment formatting
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_spreadsheet/spreadsheet_column_layout.hh2
-rw-r--r--source/blender/editors/transform/transform.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_spreadsheet/spreadsheet_column_layout.hh b/source/blender/editors/space_spreadsheet/spreadsheet_column_layout.hh
index a01e251d764..cfbf6963a9d 100644
--- a/source/blender/editors/space_spreadsheet/spreadsheet_column_layout.hh
+++ b/source/blender/editors/space_spreadsheet/spreadsheet_column_layout.hh
@@ -40,7 +40,7 @@ struct CollectionCellValue {
class CellValue {
public:
/* The implementation just uses a `std::variant` for simplicity. It can be encapsulated better,
- * but it's not really worth the complixity for now. */
+ * but it's not really worth the complexity for now. */
using VariantType =
std::variant<std::monostate, int, float, bool, ObjectCellValue, CollectionCellValue>;
diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h
index 4b43592165b..f2d5800abb7 100644
--- a/source/blender/editors/transform/transform.h
+++ b/source/blender/editors/transform/transform.h
@@ -487,7 +487,7 @@ typedef struct TransDataContainer {
*/
bool use_local_mat;
- /** Mirror option. */
+ /** Mirror option. */
union {
struct {
uint use_mirror_axis_x : 1;