From 4b4529f3cb885ad6427b0c5173c4054b844c6202 Mon Sep 17 00:00:00 2001 From: Steven Noonan Date: Mon, 11 Apr 2016 16:15:40 -0700 Subject: text-motions: fix misspelled function name "is_word_boundry" Should be "is_word_boundary" Signed-off-by: Steven Noonan --- text-motions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'text-motions.h') diff --git a/text-motions.h b/text-motions.h index dfe3acc..e601073 100644 --- a/text-motions.h +++ b/text-motions.h @@ -123,6 +123,6 @@ size_t text_search_forward(Text *txt, size_t pos, Regex *regex); size_t text_search_backward(Text *txt, size_t pos, Regex *regex); /* is c a special symbol delimiting a word? */ -int is_word_boundry(int c); +int is_word_boundary(int c); #endif -- cgit v1.2.3