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:
authorHarley Acheson <harley.acheson@gmail.com>2020-10-19 18:43:08 +0300
committerHarley Acheson <harley.acheson@gmail.com>2020-10-19 18:43:08 +0300
commitd1eefc421544e2ea632fb35cb6bcaade4c39ce6b (patch)
treed7489bcfe42af9ae9a59286d3971d6f0e2642b91 /source/blender/makesrna/intern/makesrna.c
parent3a7fd309fce89213b0224b3c6807adb2d1fe7ca8 (diff)
Spelling: Then Versus Than
Corrects incorrect usages of the words 'then' and 'than'. Differential Revision: https://developer.blender.org/D9246 Reviewed by Campbell Barton
Diffstat (limited to 'source/blender/makesrna/intern/makesrna.c')
-rw-r--r--source/blender/makesrna/intern/makesrna.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/makesrna.c b/source/blender/makesrna/intern/makesrna.c
index 269db1990b8..fa589597111 100644
--- a/source/blender/makesrna/intern/makesrna.c
+++ b/source/blender/makesrna/intern/makesrna.c
@@ -161,7 +161,7 @@ static int replace_if_different(const char *tmpfile, const char *dep_files[])
* assumes dep_files is in the same dir as makesrna.c, which is true for now. */
if (1) {
- /* first check if makesrna.c is newer then generated files
+ /* first check if makesrna.c is newer than generated files
* for development on makesrna.c you may want to disable this */
if (file_older(orgfile, __FILE__)) {
REN_IF_DIFF;
@@ -171,7 +171,7 @@ static int replace_if_different(const char *tmpfile, const char *dep_files[])
REN_IF_DIFF;
}
- /* now check if any files we depend on are newer then any generated files */
+ /* now check if any files we depend on are newer than any generated files */
if (dep_files) {
int pass;
for (pass = 0; dep_files[pass]; pass++) {