Fix a typo.
authorHuang Peng <shawn.p.huang@gmail.com>
Thu, 17 Jul 2008 23:15:00 +0000 (07:15 +0800)
committerHuang Peng <shawn.p.huang@gmail.com>
Thu, 17 Jul 2008 23:15:00 +0000 (07:15 +0800)
ibus/utility.py

index 2a5fe80..7226740 100644 (file)
@@ -94,7 +94,7 @@ def unichar_half_to_full (c):
             return unichr (full + code - half)
     return c
 
-def unichar_full_to_falf (c):
+def unichar_full_to_half (c):
     code = ord (c)
     for half, full, size in __half_full_table:
         if code >= full and code < full + size: