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:
Diffstat (limited to 'source/blender/editors/space_text/text_format_lua.c')
-rw-r--r--source/blender/editors/space_text/text_format_lua.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_text/text_format_lua.c b/source/blender/editors/space_text/text_format_lua.c
index 1e842729ab3..f7e1d433e51 100644
--- a/source/blender/editors/space_text/text_format_lua.c
+++ b/source/blender/editors/space_text/text_format_lua.c
@@ -35,7 +35,7 @@
/* *** Lua Keywords (for format_line) *** */
/* Checks the specified source string for a Lua keyword (minus boolean & 'nil').
- * This name must start at the beginning of the source string and must be
+ * This name must start at the beginning of the source string and must be
* followed by a non-identifier (see text_check_identifier(char)) or null char.
*
* If a keyword is found, the length of the matching word is returned.
@@ -76,12 +76,12 @@ static int txtfmt_lua_find_keyword(const char *string)
}
/* Checks the specified source string for a Lua special name/function. This
- * name must start at the beginning of the source string and must be followed
+ * name must start at the beginning of the source string and must be followed
* by a non-identifier (see text_check_identifier(char)) or null character.
*
* If a special name is found, the length of the matching name is returned.
- * Otherwise, -1 is returned.
- *
+ * Otherwise, -1 is returned.
+ *
* See:
* http://www.lua.org/manual/5.1/manual.html#5.1
*/