summaryrefslogtreecommitdiff
path: root/includes/normal/Utf8Case.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/normal/Utf8Case.php')
-rw-r--r--includes/normal/Utf8Case.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/includes/normal/Utf8Case.php b/includes/normal/Utf8Case.php
index 9734a922..89b1a892 100644
--- a/includes/normal/Utf8Case.php
+++ b/includes/normal/Utf8Case.php
@@ -1,19 +1,20 @@
<?php
/**
- * Simple 1:1 upper/lowercase switching arrays for utf-8 text
- * Won't get context-sensitive things yet
+ * Simple 1:1 upper/lowercase switching arrays for utf-8 text.
+ * Won't get context-sensitive things yet.
*
* Hack for bugs in ucfirst() and company
*
* These are pulled from memcached if possible, as this is faster than filling
* up a big array manually.
+ *
+ * @file
* @ingroup Language
*/
-/*
+/**
* Translation array to get upper case character
*/
-
$wikiUpperChars = array(
'a' => 'A',
'b' => 'B',
@@ -1048,7 +1049,7 @@ $wikiUpperChars = array(
'𐑏' => '𐐧'
);
-/*
+/**
* Translation array to get lower case character
*/
$wikiLowerChars = array(