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>2020-08-21 17:09:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-08-21 17:10:52 +0300
commit661ba642f2d23c18852c2a206c68af2c3665ebba (patch)
treeb8b7f60f4b0277f638882ecb0169b27d1470fc6f /source/blender/blenkernel/intern
parenteed43a89dd864e707e797325e2fb95b41574d61d (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenkernel/intern')
-rw-r--r--source/blender/blenkernel/intern/idprop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/idprop.c b/source/blender/blenkernel/intern/idprop.c
index 5469d8a4c36..56d80d7d40b 100644
--- a/source/blender/blenkernel/intern/idprop.c
+++ b/source/blender/blenkernel/intern/idprop.c
@@ -1335,11 +1335,11 @@ static void IDP_DirectLinkProperty(IDProperty *prop, BlendDataReader *reader)
break;
case IDP_DOUBLE:
/* Workaround for doubles.
- * They are stored in the same field as `int val, val2` in the IDPropertyData struct,
+ * They are stored in the same field as `int val, val2` in the #IDPropertyData struct,
* they have to deal with endianness specifically.
*
* In theory, val and val2 would've already been swapped
- * if switch_endian is true, so we have to first unswap
+ * if switch_endian is true, so we have to first un-swap
* them then re-swap them as a single 64-bit entity. */
if (BLO_read_requires_endian_switch(reader)) {
BLI_endian_switch_int32(&prop->data.val);