diff options
author | ZyX <kp-pav@yandex.ru> | 2017-04-08 19:11:42 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-04-08 19:20:42 +0300 |
commit | ab19fa155203a4071cb8e780db7d3480b562aee0 (patch) | |
tree | 67fb71fe4a3c7c6f6c5603d4e63c065257c23de7 /src/nvim/fold.h | |
parent | dc9722326e797453094b5d82decb5369b1086139 (diff) | |
download | rneovim-ab19fa155203a4071cb8e780db7d3480b562aee0.tar.gz rneovim-ab19fa155203a4071cb8e780db7d3480b562aee0.tar.bz2 rneovim-ab19fa155203a4071cb8e780db7d3480b562aee0.zip |
*: Fix linter errors
Drops comments `// for …` that do not pass linter for them being unmaintainable
and fast to becoming incomplete or even incorrect.
Mention @dedmass
Diffstat (limited to 'src/nvim/fold.h')
-rw-r--r-- | src/nvim/fold.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/fold.h b/src/nvim/fold.h index 2393f4ef47..f35b328fb1 100644 --- a/src/nvim/fold.h +++ b/src/nvim/fold.h @@ -1,12 +1,12 @@ #ifndef NVIM_FOLD_H #define NVIM_FOLD_H -#include <stdio.h> // for FILE +#include <stdio.h> #include "nvim/pos.h" -#include "nvim/garray.h" // for garray_T -#include "nvim/types.h" // for char_u -#include "nvim/buffer_defs.h" // for win_T +#include "nvim/garray.h" +#include "nvim/types.h" +#include "nvim/buffer_defs.h" /* * Info used to pass info about a fold from the fold-detection code to the |