diff options
author | Will Stamper <epmatsw@gmail.com> | 2014-06-08 13:30:44 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-06-12 20:26:35 -0400 |
commit | 5b3b3fd3ed4372866730ae857e8c09d6e5d1167d (patch) | |
tree | e339a78f58924c5001633c394078d1c21669f09a /src/nvim/indent_c.c | |
parent | 168575f3f73f79185db0abdb91be364c0d0f29f9 (diff) | |
download | rneovim-5b3b3fd3ed4372866730ae857e8c09d6e5d1167d.tar.gz rneovim-5b3b3fd3ed4372866730ae857e8c09d6e5d1167d.tar.bz2 rneovim-5b3b3fd3ed4372866730ae857e8c09d6e5d1167d.zip |
spelling fixes #827
Diffstat (limited to 'src/nvim/indent_c.c')
-rw-r--r-- | src/nvim/indent_c.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/indent_c.c b/src/nvim/indent_c.c index aeac5e0b8b..605cb5457c 100644 --- a/src/nvim/indent_c.c +++ b/src/nvim/indent_c.c @@ -2121,7 +2121,7 @@ int get_c_indent(void) */ if (curwin->w_cursor.lnum <= ourscope) { /* we reached end of scope: - * if looking for a enum or structure initialization + * if looking for an enum or structure initialization * go further back: * if it is an initializer (enum xxx or xxx =), then * don't add ind_continuation, otherwise it is a variable @@ -2184,7 +2184,7 @@ int get_c_indent(void) if (terminated == ',') break; - /* if it es a enum declaration or an assignment, + /* if it is an enum declaration or an assignment, * we are done. */ if (terminated != ';' && cin_isinit()) @@ -2472,7 +2472,7 @@ int get_c_indent(void) * 123, * sizeof * here - * Otherwise check whether it is a enumeration or structure + * Otherwise check whether it is an enumeration or structure * initialisation (not indented) or a variable declaration * (indented). */ |