diff options
| author | Steven Noonan <steven@uplinklabs.net> | 2016-04-11 16:15:40 -0700 |
|---|---|---|
| committer | Steven Noonan <steven@uplinklabs.net> | 2016-04-11 17:04:53 -0700 |
| commit | 4b4529f3cb885ad6427b0c5173c4054b844c6202 (patch) | |
| tree | b45293cef0127052bb26796a9c66a71e02d35eab /text-motions.h | |
| parent | 65e65766db38424af343fe55b46137c825cf277f (diff) | |
text-motions: fix misspelled function name "is_word_boundry"
Should be "is_word_boundary"
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'text-motions.h')
| -rw-r--r-- | text-motions.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
