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-08-12 07:34:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-08-12 07:34:43 +0300
commitc741558509a35317209bbfd3ff77c413f791a47c (patch)
tree9a0ed82b338ca002283058c87282d26478eef3ae /source/blender/makesdna
parent1ef275963d1cfa257de184f38a2abb04a5df3ac7 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_ID.h2
-rw-r--r--source/blender/makesdna/intern/makesdna.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index 8a577be2749..10a5a0f1c47 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -587,7 +587,7 @@ enum {
*
* RESET_NEVER
*
- * NOTE: Only used by nodegroups currently.
+ * NOTE: Only used by node-groups currently.
*/
LIB_TAG_LOCALIZED = 1 << 14,
diff --git a/source/blender/makesdna/intern/makesdna.c b/source/blender/makesdna/intern/makesdna.c
index 8324db1a9c8..061c3462a69 100644
--- a/source/blender/makesdna/intern/makesdna.c
+++ b/source/blender/makesdna/intern/makesdna.c
@@ -1118,11 +1118,11 @@ static int calculate_struct_sizes(int firststruct, FILE *file_verify, const char
types_align_32[structtype] = max_align_32;
types_align_64[structtype] = max_align_64;
- /* Santiy check 1: alignment should never be 0. */
+ /* Sanity check 1: alignment should never be 0. */
BLI_assert(max_align_32);
BLI_assert(max_align_64);
- /* Santiy check 2: alignment should always be equal or smaller than the maximum
+ /* Sanity check 2: alignment should always be equal or smaller than the maximum
* size of a build in type which is 8 bytes (ie int64_t or double). */
BLI_assert(max_align_32 <= 8);
BLI_assert(max_align_64 <= 8);