diff options
author | Hansraj Das <raj.das.136@gmail.com> | 2020-10-12 12:58:12 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-12 09:28:12 +0200 |
commit | 1709210a53e5969732346d4e8981d1917cf5a63d (patch) | |
tree | 64a1571fcaa3537ff177d634375c444b65ec1fad /src/clint.py | |
parent | 3dffa2cc42d8d69e26a548f3da9088aaf1aead77 (diff) | |
download | rneovim-1709210a53e5969732346d4e8981d1917cf5a63d.tar.gz rneovim-1709210a53e5969732346d4e8981d1917cf5a63d.tar.bz2 rneovim-1709210a53e5969732346d4e8981d1917cf5a63d.zip |
Fix multiple typos (#13063)
* Fix multiple typos in `src/nvim/api/ui_events.in.h`
* Below spellings are corrected:
* Definitions
* Revision
* Performance
* Typo fix `presense` should be presence
* Typo fix, follwed -> followed
* Typo fix, attemping -> attempting
* Typo fix, duplicate 'the'
* Typo fix, bounaries -> boundaries
* Revert "Typo fix, bounaries -> boundaries"
This reverts commit 24779e55e596f7534585938a7e532830ad2fa83c.
* Revert "Typo fix, duplicate 'the'"
This reverts commit 1d41d74f78736e67821a15edc9c174a2c3024f87.
* Revert "Typo fix, attemping -> attempting"
This reverts commit d8b2860dfcac366af7afae1f09946ed0aee4a34e.
Diffstat (limited to 'src/clint.py')
-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 8dc41fdb93..9b4128a0c9 100755 --- a/src/clint.py +++ b/src/clint.py @@ -350,7 +350,7 @@ def IsErrorInSuppressedErrorsList(category, linenum): category: str, the category of the error. linenum: int, the current line number. Returns: - bool, True iff the error should be suppressed due to presense in + bool, True iff the error should be suppressed due to presence in suppressions file. """ return (category, linenum) in _error_suppressions_2 |