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-03-20 04:23:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-20 04:23:04 +0300
commitcb560c01b6c61241acaa848cbdeb263af8b8cecd (patch)
tree79eba0465e374cef76f1da88c6ffa04fa87be33d /source/blender/makesdna
parent85dc8d74771dc61c295574af9adea34ef251bf9d (diff)
Cleanup: clang-format, comment indentation
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/intern/dna_genfile.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/makesdna/intern/dna_genfile.c b/source/blender/makesdna/intern/dna_genfile.c
index c3cc3256125..2e0fe6200d1 100644
--- a/source/blender/makesdna/intern/dna_genfile.c
+++ b/source/blender/makesdna/intern/dna_genfile.c
@@ -81,15 +81,15 @@
* <typenr><nr_of_elems> <typenr><namenr> <typenr><namenr> ...
* \endcode
*
- * **Remember to read/write integer and short aligned!**
+ * **Remember to read/write integer and short aligned!**
*
- * While writing a file, the names of a struct is indicated with a type number,
- * to be found with: ``type = DNA_struct_find_nr(SDNA *, const char *)``
- * The value of ``type`` corresponds with the index within the structs array
+ * While writing a file, the names of a struct is indicated with a type number,
+ * to be found with: ``type = DNA_struct_find_nr(SDNA *, const char *)``
+ * The value of ``type`` corresponds with the index within the structs array
*
- * For the moment: the complete DNA file is included in a .blend file. For
- * the future we can think of smarter methods, like only included the used
- * structs. Only needed to keep a file short though...
+ * For the moment: the complete DNA file is included in a .blend file. For
+ * the future we can think of smarter methods, like only included the used
+ * structs. Only needed to keep a file short though...
*
* ALLOWED AND TESTED CHANGES IN STRUCTS:
* - Type change (a char to float will be divided by 255).