summaryrefslogtreecommitdiff
path: root/ext/mbstring/mbstring.c
diff options
context:
space:
mode:
authorVeres Lajos <vlajos@gmail.com>2014-02-14 17:16:17 +0200
committerLior Kaplan <kaplanlior@gmail.com>2014-02-14 17:16:17 +0200
commita7ec000f3526076fce684557bee0324a3f8b70ad (patch)
treefc319990ed875f4946f741d96fe3376b1715a539 /ext/mbstring/mbstring.c
parent23d952ed60766be772fe72dcdc61407c6231dc18 (diff)
downloadphp-git-a7ec000f3526076fce684557bee0324a3f8b70ad.tar.gz
a few typofixes
Diffstat (limited to 'ext/mbstring/mbstring.c')
-rw-r--r--ext/mbstring/mbstring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c
index 1ae43602d1..e7f08a3256 100644
--- a/ext/mbstring/mbstring.c
+++ b/ext/mbstring/mbstring.c
@@ -1292,7 +1292,7 @@ int _php_mb_ini_mbstring_internal_encoding_set(const char *new_value, uint new_v
const mbfl_encoding *encoding;
if (!new_value || new_value_length == 0 || !(encoding = mbfl_name2encoding(new_value))) {
- /* falls back to UTF-8 if an unkown encoding name is given */
+ /* falls back to UTF-8 if an unknown encoding name is given */
encoding = mbfl_no2encoding(mbfl_no_encoding_utf8);
}
MBSTRG(internal_encoding) = encoding;