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-12-24 01:30:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-24 01:37:21 +0300
commitb450ba84d9dd51fe0e91fc848c312c7e92fcd176 (patch)
tree8adbe24936624ae89af2441a4fe13c06d02a5731 /source/blender/blenkernel/intern/library.c
parentf46ba1a7e06d534bd93c950aed4feca87edc4fea (diff)
Cleanup: correct filenames in comments
Diffstat (limited to 'source/blender/blenkernel/intern/library.c')
-rw-r--r--source/blender/blenkernel/intern/library.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenkernel/intern/library.c b/source/blender/blenkernel/intern/library.c
index 00126ab7eac..e051dc946cb 100644
--- a/source/blender/blenkernel/intern/library.c
+++ b/source/blender/blenkernel/intern/library.c
@@ -1653,7 +1653,7 @@ void id_sort_by_name(ListBase *lb, ID *id, ID *id_sorting_hint)
/**
* Helper building final ID name from given base_name and number.
*
- * If everything goes well and we do generate a valid final ID anme in given name, we return true.
+ * If everything goes well and we do generate a valid final ID name in given name, we return true.
* In case the final name would overflow the allowed ID name length, or given number is bigger than
* maximum allowed value, we truncate further the base_name (and given name, which is assumed to
* have the same 'base_name' part), and return false.
@@ -1745,9 +1745,9 @@ static bool check_for_dupid(ListBase *lb, ID *id, char *name, ID **r_id_sorting_
if (id_name_final_build(final_name, base_name, prev_final_base_name_len, prev_number + 1) &&
id_name_final_build(prev_final_name, base_name, prev_final_base_name_len, prev_number)) {
- /* We succeffuly built valid final names of previous and current iterations, now we have to
- * ensure that previous final name is indeed used in curent ID list, and that current one
- * is not. */
+ /* We successfully built valid final names of previous and current iterations,
+ * now we have to ensure that previous final name is indeed used in current ID list,
+ * and that current one is not. */
bool is_valid = false;
for (id_test = lb->first; id_test; id_test = id_test->next) {
if (id != id_test && !ID_IS_LINKED(id_test)) {