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-04-19 16:56:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-04-19 16:56:12 +0300
commit46a13482cb9dcd45d50283b397b1bfea71dc013b (patch)
treef5879e6b3a757c18ada46be10220cd50a4f0068f
parent33440760a6ed6f250aff8fbb2b01c094c612af23 (diff)
Cleanup: spelling
-rw-r--r--source/blender/blenkernel/BKE_geometry_set.hh2
-rw-r--r--source/blender/blenlib/BLI_stack.hh2
-rw-r--r--source/blender/blenlib/BLI_vector.hh2
-rw-r--r--source/blender/makesdna/DNA_space_types.h2
4 files changed, 4 insertions, 4 deletions
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;