diff options
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) { |