aboutsummaryrefslogtreecommitdiff
path: root/text-objects.c
diff options
context:
space:
mode:
authorTwoFinger <Two-Finger@users.noreply.github.com>2018-01-27 18:44:29 +0200
committerTwoFinger <Two-Finger@users.noreply.github.com>2018-03-05 12:06:21 +0200
commit67a8de28cdc9496d5655b1a9c1bf4794004ca9f0 (patch)
treec8111d2f604697b4356ea079e4ee1ebaee17da2a /text-objects.c
parentfdb56b003c9e0a00ded2878b0c174a7780bb39b2 (diff)
downloadvis-67a8de28cdc9496d5655b1a9c1bf4794004ca9f0.tar.gz
vis-67a8de28cdc9496d5655b1a9c1bf4794004ca9f0.tar.xz
Fix a typo in identifiers
Diffstat (limited to 'text-objects.c')
-rw-r--r--text-objects.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/text-objects.c b/text-objects.c
index fcd0158..b39d13c 100644
--- a/text-objects.c
+++ b/text-objects.c
@@ -274,7 +274,7 @@ Filerange text_object_angle_bracket(Text *txt, size_t pos) {
return text_object_bracket(txt, pos, '>');
}
-Filerange text_object_paranthese(Text *txt, size_t pos) {
+Filerange text_object_parenthesis(Text *txt, size_t pos) {
return text_object_bracket(txt, pos, ')');
}