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>2019-06-17 05:51:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-17 05:52:20 +0300
commita1ef2e4b16e1fe3c183e7477649f866b3e814102 (patch)
tree701f1696694488a780989cec0efb5063068b181e /source/blender/blenloader/intern/versioning_250.c
parent12da679fa094bdee5e0d55bac51a95a7abfc6d13 (diff)
Cleanup: comment, RNA spelling
Diffstat (limited to 'source/blender/blenloader/intern/versioning_250.c')
-rw-r--r--source/blender/blenloader/intern/versioning_250.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenloader/intern/versioning_250.c b/source/blender/blenloader/intern/versioning_250.c
index 7b239105251..17facb3ae20 100644
--- a/source/blender/blenloader/intern/versioning_250.c
+++ b/source/blender/blenloader/intern/versioning_250.c
@@ -1659,8 +1659,8 @@ void blo_do_versions_250(FileData *fd, Library *lib, Main *bmain)
}
for (tex = bmain->textures.first; tex; tex = tex->id.next) {
- /* if youre picky, this isn't correct until we do a version bump
- * since you could set saturation to be 0.0*/
+ /* If you're picky, this isn't correct until we do a version bump
+ * since you could set saturation to be 0.0. */
if (tex->saturation == 0.0f) {
tex->saturation = 1.0f;
}
@@ -2030,8 +2030,8 @@ void blo_do_versions_250(FileData *fd, Library *lib, Main *bmain)
}
}
- /* Externl group node socket need to adjust their own_index to point at
- * associated ntree inputs/outputs internal sockets. This happens in
+ /* External group node socket need to adjust their own_index to point at
+ * associated 'ntree' inputs/outputs internal sockets. This happens in
* do_versions_after_linking_250, after lib linking. */
}
}