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-09-24 04:31:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-09-24 04:31:23 +0300
commitbc65c7d0e579c19169baf8be609afa066712c2cc (patch)
treeae61716f08a9351c2cbd7940ddd0278863eb0e37 /source/blender/blenlib
parent599d96e8f96f2fd40c51c9949091559b5f162869 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_uuid.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenlib/BLI_uuid.h b/source/blender/blenlib/BLI_uuid.h
index 7ac676b7617..98a600a5de8 100644
--- a/source/blender/blenlib/BLI_uuid.h
+++ b/source/blender/blenlib/BLI_uuid.h
@@ -79,17 +79,17 @@ namespace blender {
class bUUID : public ::bUUID {
public:
/**
- * Default constructor, used with `bUUID value{};`, will initialise to the nil UUID.
+ * Default constructor, used with `bUUID value{};`, will initialize to the nil UUID.
*/
bUUID() = default;
- /** Initialise from the bUUID DNA struct. */
+ /** Initialize from the bUUID DNA struct. */
bUUID(const ::bUUID &struct_uuid);
- /** Initialise from 11 integers, 5 for the regular fields and 6 for the `node` array. */
+ /** Initialize from 11 integers, 5 for the regular fields and 6 for the `node` array. */
bUUID(std::initializer_list<uint32_t> field_values);
- /** Initialise by parsing the string; undefined behaviour when the string is invalid. */
+ /** Initialize by parsing the string; undefined behavior when the string is invalid. */
explicit bUUID(const std::string &string_formatted_uuid);
uint64_t hash() const;