[Bf-blender-cvs] [46a13482cb9] master: Cleanup: spelling

Campbell Barton noreply at git.blender.org
Mon Apr 19 15:57:11 CEST 2021


Commit: 46a13482cb9dcd45d50283b397b1bfea71dc013b
Author: Campbell Barton
Date:   Mon Apr 19 23:56:12 2021 +1000
Branches: master
https://developer.blender.org/rB46a13482cb9dcd45d50283b397b1bfea71dc013b

Cleanup: spelling

===================================================================

M	source/blender/blenkernel/BKE_geometry_set.hh
M	source/blender/blenlib/BLI_stack.hh
M	source/blender/blenlib/BLI_vector.hh
M	source/blender/makesdna/DNA_space_types.h

===================================================================

diff --git a/source/blender/blenkernel/BKE_geometry_set.hh b/source/blender/blenkernel/BKE_geometry_set.hh
index f5041d2bf5f..bfb4afe085c 100644
--- a/source/blender/blenkernel/BKE_geometry_set.hh
+++ b/source/blender/blenkernel/BKE_geometry_set.hh
@@ -182,7 +182,7 @@ class GeometryComponent {
 
   /**
    * Returns an "output attribute", which is essentially a mutable virtual array with some commonly
-   * used convience features. The returned output attribute might be empty if requested attribute
+   * used convince features. The returned output attribute might be empty if requested attribute
    * cannot exist on the geometry.
    *
    * The included convenience features are:
diff --git a/source/blender/blenlib/BLI_stack.hh b/source/blender/blenlib/BLI_stack.hh
index c20a9b9ecfa..d66316a95d9 100644
--- a/source/blender/blenlib/BLI_stack.hh
+++ b/source/blender/blenlib/BLI_stack.hh
@@ -232,7 +232,7 @@ class Stack {
   {
     this->push_as(std::move(value));
   }
-  /* This is similar to std::stack::emblace. */
+  /* This is similar to `std::stack::emplace`. */
   template<typename... ForwardT> void push_as(ForwardT &&... value)
   {
     if (top_ == top_chunk_->capacity_end) {
diff --git a/source/blender/blenlib/BLI_vector.hh b/source/blender/blenlib/BLI_vector.hh
index b7ff488ff0f..d08a5c65c52 100644
--- a/source/blender/blenlib/BLI_vector.hh
+++ b/source/blender/blenlib/BLI_vector.hh
@@ -443,7 +443,7 @@ class Vector {
   {
     this->append_as(std::move(value));
   }
-  /* This is similar to std::vector::emblace_back. */
+  /* This is similar to `std::vector::emplace_back`. */
   template<typename... ForwardValue> void append_as(ForwardValue &&... value)
   {
     this->ensure_space_for_one();
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index ab74282eb64..cf3e31f7d9a 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -1911,7 +1911,7 @@ typedef struct SpaceSpreadsheet {
   /**
    * List of #SpreadsheetContext.
    * This is a path to the data that is displayed in the spreadsheet.
-   * It can be set explicitely by an action of the user (e.g. clicking the preview icon in a
+   * It can be set explicitly by an action of the user (e.g. clicking the preview icon in a
    * geometry node) or it can be derived from context automatically based on some heuristic.
    */
   ListBase context_path;



More information about the Bf-blender-cvs mailing list