summaryrefslogtreecommitdiff
path: root/csutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'csutil.c')
-rw-r--r--csutil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/csutil.c b/csutil.c
index 3ea3f57..515e9ae 100644
--- a/csutil.c
+++ b/csutil.c
@@ -83,7 +83,7 @@ void enmkallsmall(char * d, const char * p, const char * encoding)
}
-/* convert null terminated string to have intial capital using encoding */
+/* convert null terminated string to have initial capital using encoding */
void enmkinitcap(char * d, const char * p, const char * encoding)
{
struct cs_info * csconv = get_current_cs(encoding);
@@ -112,7 +112,7 @@ void mkallsmall(char * p, const struct cs_info * csconv)
}
-/* convert null terminated string to have intial capital */
+/* convert null terminated string to have initial capital */
void mkinitcap(char * p, const struct cs_info * csconv)
{
if (*p != '\0') *p = csconv[((unsigned char)*p)].cupper;