Use 0x for hexadecimal prefix
authorcsteipp <csteipp@wikimedia.org>
Tue, 16 Sep 2014 18:51:07 +0000 (11:51 -0700)
committerBartosz Dziewoński <matma.rex@gmail.com>
Tue, 16 Sep 2014 18:59:07 +0000 (18:59 +0000)
0X is a legal hex prefix, but tools like pfff and my syntax highlighter
prefer the more common 0x.

Change-Id: I38bba068f9a97566b0df9fb0a2fe72d25519a21b

maintenance/language/generateCollationData.php

index db6c315..973cf7b 100644 (file)
@@ -48,7 +48,7 @@ class GenerateCollationData extends Maintenance {
         * Important tertiary weights from UTS #10 section 7.2
         */
        const NORMAL_UPPERCASE = 0x08;
-       const NORMAL_HIRAGANA = 0X0E;
+       const NORMAL_HIRAGANA = 0x0E;
 
        public function __construct() {
                parent::__construct();