aboutsummaryrefslogtreecommitdiffstats
path: root/main/say.c
diff options
context:
space:
mode:
authortzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-02 15:57:02 +0000
committertzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-02 15:57:02 +0000
commit4d43ba70d1537ee83f1910eeb11a8d246040bb57 (patch)
tree140374186507d1561a79c4dfb29494a10459c092 /main/say.c
parent75e7a3bc76a04710b9e236dcb28bce83040792cf (diff)
Fix various typos reported by Lintian
(Also fix the typos in the comments) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@273641 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/say.c')
-rw-r--r--main/say.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/say.c b/main/say.c
index 072d2aab2..ac2a8593d 100644
--- a/main/say.c
+++ b/main/say.c
@@ -668,7 +668,7 @@ static int ast_say_number_full_cs(struct ast_channel *chan, int num, const char
default : options = "m"; /* others are male */
}
}
- if ( left > 1 ) { /* we dont say "one thousand" but only thousand */
+ if ( left > 1 ) { /* we don't say "one thousand" but only thousand */
res = ast_say_number_full_cs(chan, left, ints, language, options, audiofd, ctrlfd);
if (res)
return res;
@@ -3997,7 +3997,7 @@ int ast_say_date_with_format_da(struct ast_channel *chan, time_t t, const char *
}
break;
case 'H':
- /* 24-Hour, single digit hours preceeded by "oh" (0) */
+ /* 24-Hour, single digit hours preceded by "oh" (0) */
if (tm.tm_hour < 10 && tm.tm_hour > 0) {
res = wait_file(chan, ints, "digits/0", lang);
}