summaryrefslogtreecommitdiff
path: root/main/say.c
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2010-07-02 15:57:02 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2010-07-02 15:57:02 +0000
commitc613897d1c0b7696f34fdd88ef473d7d63a53764 (patch)
tree140374186507d1561a79c4dfb29494a10459c092 /main/say.c
parent00654ddd160aa7f53f575f4988153ed41d1d0a00 (diff)
Fix various typos reported by Lintian
(Also fix the typos in the comments) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@273641 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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);
}