X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/b75a7d8f3b4adbae880cab104ce2c6a50eee4db2..374ca955a76ecab1204ca8bfa63ff9238d998416:/icuSources/data/brkitr/title.txt

diff --git a/icuSources/data/brkitr/title.txt b/icuSources/data/brkitr/title.txt
index d12517f6..e3f6566c 100644
--- a/icuSources/data/brkitr/title.txt
+++ b/icuSources/data/brkitr/title.txt
@@ -11,7 +11,7 @@ $NotCased        = [^ $Cased];
 #
 #  If the iterator was not stopped on a cased character, advance it to the first cased char
 #
-($NotCased | $CaseIgnorable)*;
+$NotCased+;
 
 #
 #  If the iterator starts on a cased item, advance through all adjacent cased items plus
@@ -22,5 +22,11 @@ $Cased ($Cased | $CaseIgnorable)* $NotCased*;
 #
 #  Reverse Rules
 #
-!$NotCased* ($Cased | $CaseIgnorable)* $NotCased?;
 
+! $NotCased+;
+
+#
+#  If the iterator starts on a cased item, advance through all adjacent cased items plus
+#    any non-cased stuff, to reach the start of the next word.
+#
+! $NotCased* ($Cased | $CaseIgnorable)* $Cased;
\ No newline at end of file