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 <campbell@blender.org>2022-08-05 06:34:26 +0300
committerCampbell Barton <campbell@blender.org>2022-08-05 06:34:26 +0300
commit53c0c3cbd7a6be77c002c0e7fe9a3b19ad34c0d2 (patch)
tree49d4be401c658aebeaeba8c6d2d68225787493a0 /source/blender/editors/space_outliner
parent16ede6584e6824f596e4816e86c0c2ed2236d646 (diff)
Cleanup: spelling, unused arg warning
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/tree/tree_element_overrides.cc4
-rw-r--r--source/blender/editors/space_outliner/tree/tree_element_overrides.hh2
2 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_outliner/tree/tree_element_overrides.cc b/source/blender/editors/space_outliner/tree/tree_element_overrides.cc
index 7db6b9635ee..e19459ced61 100644
--- a/source/blender/editors/space_outliner/tree/tree_element_overrides.cc
+++ b/source/blender/editors/space_outliner/tree/tree_element_overrides.cc
@@ -153,7 +153,7 @@ void TreeElementOverridesBase::expand(SpaceOutliner &space_outliner) const
/** \} */
/* -------------------------------------------------------------------- */
-/** \name Overriden Property
+/** \name Overridden Property
*
* Represents an RNA property that was overridden.
*
@@ -187,7 +187,7 @@ StringRefNull TreeElementOverridesProperty::getWarning() const
/** \} */
/* -------------------------------------------------------------------- */
-/** \name Overriden Property Operation
+/** \name Overridden Property Operation
*
* See #TreeElementOverridesPropertyOperation.
* \{ */
diff --git a/source/blender/editors/space_outliner/tree/tree_element_overrides.hh b/source/blender/editors/space_outliner/tree/tree_element_overrides.hh
index acf35033ce1..f8ca146a4ea 100644
--- a/source/blender/editors/space_outliner/tree/tree_element_overrides.hh
+++ b/source/blender/editors/space_outliner/tree/tree_element_overrides.hh
@@ -66,7 +66,7 @@ class TreeElementOverridesProperty : public AbstractTreeElement {
};
/**
- * Represent a single operation within an overriden property. While usually a single override
+ * Represent a single operation within an overridden property. While usually a single override
* property represents a single operation (changing the value), a single overridden collection
* property may have multiple operations, e.g. to insert or remove collection items.
*