From bc65c7d0e579c19169baf8be609afa066712c2cc Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 24 Sep 2021 11:31:23 +1000 Subject: Cleanup: spelling in comments --- source/blender/blenlib/BLI_uuid.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/blenlib') 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 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; -- cgit v1.2.3