diff options
author | dundargoc <gocdundar@gmail.com> | 2023-12-13 19:16:41 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-12-13 20:31:16 +0100 |
commit | 1d63a057a6cb47e84c204f64ba5406cfe7a3ab93 (patch) | |
tree | bb00fb949454078cba1e1db6b32a3a7b478c65b2 /src | |
parent | 7908dc0d1552e715cc4cc077e6b87d53d0e323c2 (diff) | |
download | rneovim-1d63a057a6cb47e84c204f64ba5406cfe7a3ab93.tar.gz rneovim-1d63a057a6cb47e84c204f64ba5406cfe7a3ab93.tar.bz2 rneovim-1d63a057a6cb47e84c204f64ba5406cfe7a3ab93.zip |
docs: fix links
Diffstat (limited to 'src')
-rwxr-xr-x | src/clint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clint.py b/src/clint.py index ed5aaf43d2..021d6b0a16 100755 --- a/src/clint.py +++ b/src/clint.py @@ -2082,7 +2082,7 @@ def CheckLanguage(filename, clean_lines, linenum, error): if match: error(filename, linenum, 'runtime/deprecated', 4, 'Accessing list_T internals directly is prohibited; ' - 'see https://github.com/neovim/neovim/wiki/List-management-in-Neovim') + 'see https://neovim.io/doc/user/dev_vimpatch.html#dev-vimpatch-list-management') # Check for suspicious usage of "if" like # } if (a == b) { |