diff options
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; |