diff options
author | James McCoy <jamessan@jamessan.com> | 2022-03-20 10:35:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-20 10:35:27 -0400 |
commit | 463738938d2f3ec4cff6f016937c3c02daae1184 (patch) | |
tree | df48b9a0d115b974082a9673343f5ee8648f4f12 | |
parent | 315858bf67599d39c38628cd2ab8bff1074d7fe4 (diff) | |
parent | b1207e5080087fa0ad05d13787a02ebee3f20ac0 (diff) | |
download | rneovim-463738938d2f3ec4cff6f016937c3c02daae1184.tar.gz rneovim-463738938d2f3ec4cff6f016937c3c02daae1184.tar.bz2 rneovim-463738938d2f3ec4cff6f016937c3c02daae1184.zip |
Merge pull request #17785 from muniter/jl-fix-doxygen-destroyer
docs: properly escape to avoid doxygen weirdness
-rw-r--r-- | src/nvim/api/win_config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/win_config.c b/src/nvim/api/win_config.c index b0267f5ed0..42e880dc19 100644 --- a/src/nvim/api/win_config.c +++ b/src/nvim/api/win_config.c @@ -126,7 +126,7 @@ /// [ "╔", "═" ,"╗", "║", "╝", "═", "╚", "║" ]. /// If the number of chars are less than eight, they will be repeated. Thus /// an ASCII border could be specified as -/// [ "/", "-", "\\", "|" ], +/// [ "/", "-", \"\\\\\", "|" ], /// or all chars the same as /// [ "x" ]. /// An empty string can be used to turn off a specific border, for instance, |