2f19b4081ef0f0d93daf8f7ff1c26cf8879a4d14
braney
  Thu Apr 26 17:26:10 2012 -0700
more work on #6152.   Now with in-frame deletions!
diff --git src/lib/common.c src/lib/common.c
index 06a35c6..373102b 100644
--- src/lib/common.c
+++ src/lib/common.c
@@ -1488,31 +1488,31 @@
         return haystack-1;
         }
     }
 return NULL;
 }
 
 void toUpperN(char *s, int n)
 /* Convert a section of memory to upper case. */
 {
 int i;
 for (i=0; i<n; ++i)
     s[i] = toupper(s[i]);
 }
 
 void toLowerN(char *s, int n)
-/* Convert a section of memory to upper case. */
+/* Convert a section of memory to lower case. */
 {
 int i;
 for (i=0; i<n; ++i)
     s[i] = tolower(s[i]);
 }
 
 void toggleCase(char *s, int size)
 /* toggle upper and lower case chars in string. */
 {
 char c;
 int i;
 for (i=0; i<size; ++i)
     {
     c = s[i];
     if (isupper(c))