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 /source/blender/blenlib/BLI_vector.hh
parent33440760a6ed6f250aff8fbb2b01c094c612af23 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenlib/BLI_vector.hh')
-rw-r--r--source/blender/blenlib/BLI_vector.hh2
1 files changed, 1 insertions, 1 deletions
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();