From 8819a4dce8d55c9237f7d68575f59baf7d59bb11 Mon Sep 17 00:00:00 2001 From: Harley Acheson Date: Thu, 5 Nov 2020 07:52:58 -0800 Subject: Spelling: Predefined, Look Up, No One Fixes 18 misspellings of 'predefined', 'Look Up', 'Lookup', and 'No One'. Differential Revision: https://developer.blender.org/D9466 Reviewed by Hans Goudey --- source/blender/python/intern/bpy_app_translations.c | 4 ++-- source/blender/python/intern/bpy_utils_units.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/python') diff --git a/source/blender/python/intern/bpy_app_translations.c b/source/blender/python/intern/bpy_app_translations.c index 476ddf2019a..945e7b5fd1d 100644 --- a/source/blender/python/intern/bpy_app_translations.c +++ b/source/blender/python/intern/bpy_app_translations.c @@ -421,7 +421,7 @@ static PyStructSequence_Field app_translations_contexts_fields[ARRAY_SIZE(_conte static PyStructSequence_Desc app_translations_contexts_desc = { "bpy.app.translations.contexts", /* name */ - "This named tuple contains all pre-defined translation contexts", /* doc */ + "This named tuple contains all predefined translation contexts", /* doc */ app_translations_contexts_fields, /* fields */ ARRAY_SIZE(app_translations_contexts_fields) - 1, }; @@ -464,7 +464,7 @@ static PyObject *app_translations_contexts_make(void) * \{ */ PyDoc_STRVAR(app_translations_contexts_doc, - "A named tuple containing all pre-defined translation contexts.\n" + "A named tuple containing all predefined translation contexts.\n" "\n" ".. warning::\n" " Never use a (new) context starting with \"" BLT_I18NCONTEXT_DEFAULT_BPYRNA diff --git a/source/blender/python/intern/bpy_utils_units.c b/source/blender/python/intern/bpy_utils_units.c index a58e2bcb975..29bc9e31aa3 100644 --- a/source/blender/python/intern/bpy_utils_units.c +++ b/source/blender/python/intern/bpy_utils_units.c @@ -74,13 +74,13 @@ static PyStructSequence_Field bpyunits_categories_fields[ARRAY_SIZE(bpyunits_uca static PyStructSequence_Desc bpyunits_systems_desc = { "bpy.utils.units.systems", /* name */ - "This named tuple contains all pre-defined unit systems", /* doc */ + "This named tuple contains all predefined unit systems", /* doc */ bpyunits_systems_fields, /* fields */ ARRAY_SIZE(bpyunits_systems_fields) - 1, }; static PyStructSequence_Desc bpyunits_categories_desc = { "bpy.utils.units.categories", /* name */ - "This named tuple contains all pre-defined unit names", /* doc */ + "This named tuple contains all predefined unit names", /* doc */ bpyunits_categories_fields, /* fields */ ARRAY_SIZE(bpyunits_categories_fields) - 1, }; -- cgit v1.2.3