diff options
author | dundargoc <gocdundar@gmail.com> | 2023-09-15 09:43:48 +0200 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-10-10 19:20:32 +0200 |
commit | c3d21ad1bccd9a2975be73b1115213fd884eada3 (patch) | |
tree | 8c7144e6ddc18a6cf9c097f5516b6f9b74221112 /src/nvim/marktree.c | |
parent | fd39f5ce8c9bbda1b77ff6c03553148fadac5d57 (diff) | |
download | rneovim-c3d21ad1bccd9a2975be73b1115213fd884eada3.tar.gz rneovim-c3d21ad1bccd9a2975be73b1115213fd884eada3.tar.bz2 rneovim-c3d21ad1bccd9a2975be73b1115213fd884eada3.zip |
docs: small fixes
Co-authored-by: Wansmer <wansmer@gmail.com>
Co-authored-by: Andrew Voynov <andrewvoynov.b@gmail.com>
Co-authored-by: David Moberg <david.moberg@mediatek.com>
Diffstat (limited to 'src/nvim/marktree.c')
-rw-r--r-- | src/nvim/marktree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/marktree.c b/src/nvim/marktree.c index ff82c59783..8ab9370e6c 100644 --- a/src/nvim/marktree.c +++ b/src/nvim/marktree.c @@ -852,7 +852,7 @@ static void intersect_add(Intersection *x, Intersection *y) } } -// inplace assymetric difference: x &= ~y +// inplace asymmetric difference: x &= ~y static void intersect_sub(Intersection *restrict x, Intersection *restrict y) { size_t xi = 0, yi = 0; |