Fixes copy/paste error in comment

This commit is contained in:
Zsolt Vasvari 2008-02-16 23:51:58 +00:00
parent 4839044063
commit 87265897e1

View file

@ -566,7 +566,7 @@ astring *astring_tolower(astring *str)
{
char *text;
/* just toupper() on all characters */
/* just tolower() on all characters */
for (text = str->text; *text != 0; text++)
*text = tolower(*text);