diff options
author | Klemen Košir <klemen913@gmail.com> | 2014-04-29 15:40:28 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-29 13:14:25 -0300 |
commit | 1a5505c46b2d8c921ad85b094b39c63e7a7704f1 (patch) | |
tree | 5edddac55de628a731bb4e4d7241e32800c3be52 /src/spell.h | |
parent | 463d0940e30ed16c6d2f6b40923aed2b4999e80b (diff) | |
download | rneovim-1a5505c46b2d8c921ad85b094b39c63e7a7704f1.tar.gz rneovim-1a5505c46b2d8c921ad85b094b39c63e7a7704f1.tar.bz2 rneovim-1a5505c46b2d8c921ad85b094b39c63e7a7704f1.zip |
Updated comments in spell.h/.c to follow the style guide.
Diffstat (limited to 'src/spell.h')
-rw-r--r-- | src/spell.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spell.h b/src/spell.h index 3322f66098..9662c8e6f2 100644 --- a/src/spell.h +++ b/src/spell.h @@ -1,6 +1,6 @@ #ifndef NEOVIM_SPELL_H #define NEOVIM_SPELL_H -/* spell.c */ + int spell_check(win_T *wp, char_u *ptr, hlf_T *attrp, int *capcol, int docount); int spell_move_to(win_T *wp, int dir, int allwords, int curline, @@ -30,4 +30,4 @@ int spell_word_start(int startcol); void spell_expand_check_cap(colnr_T col); int expand_spelling(linenr_T lnum, char_u *pat, char_u ***matchp); -#endif /* NEOVIM_SPELL_H */ +#endif // NEOVIM_SPELL_H |