diff options
author | zeertzjq <zeertzjq@outlook.com> | 2021-10-05 10:10:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-04 20:10:07 -0600 |
commit | 655e489e90712cc3c2f06d84a5030c66e5c51d91 (patch) | |
tree | 42913126a2570dacb6fb6bc18c652f8b6c3b8ddb | |
parent | b60e6448ebf8107b4e2151e69a826149ccd13c77 (diff) | |
download | rneovim-655e489e90712cc3c2f06d84a5030c66e5c51d91.tar.gz rneovim-655e489e90712cc3c2f06d84a5030c66e5c51d91.tar.bz2 rneovim-655e489e90712cc3c2f06d84a5030c66e5c51d91.zip |
docs(develop.txt): nvim_open_win is now in win_config.c (#15909)
-rw-r--r-- | runtime/doc/develop.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/develop.txt b/runtime/doc/develop.txt index 14f35acce3..7127c74134 100644 --- a/runtime/doc/develop.txt +++ b/runtime/doc/develop.txt @@ -166,7 +166,7 @@ Docstring format: - Use `<pre>` for code samples. Example: the help for |nvim_open_win()| is generated from a docstring defined -in src/nvim/api/vim.c like this: > +in src/nvim/api/win_config.c like this: > /// Opens a new window. /// ... |