From d58faf55b415054aba307a0715af5fd2b2668cd8 Mon Sep 17 00:00:00 2001 From: Paul LeoNerd Evans Date: Mon, 26 Aug 2013 02:30:43 +0100 Subject: [PATCH] Fix comment about 'n' in strpncmp_camel() --- termkey.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/termkey.c b/termkey.c index 7e39050..889dfad 100644 --- a/termkey.c +++ b/termkey.c @@ -217,7 +217,7 @@ static int snprint_cameltospaces(char *str, size_t size, const char *src) /* Similar to strcmp(str, strcamel, n) except that: * it compares CamelCase in strcamel with space separated values in str; * it takes char**s and updates them - * n counts bytes of str, not strcamel + * n counts bytes of strcamel, not str */ static int strpncmp_camel(const char **strp, const char **strcamelp, size_t n) {