diff -r 184be3ec2f62 -r 27fdf5f36ade CharacterArray.st --- a/CharacterArray.st Fri May 06 18:23:03 2016 +0200 +++ b/CharacterArray.st Sat May 07 12:30:11 2016 +0200 @@ -363,7 +363,6 @@ " ! ! - !CharacterArray class methodsFor:'pattern matching'! matchEscapeCharacter @@ -769,7 +768,6 @@ ^ Unicode32String ! ! - !CharacterArray methodsFor:'Compatibility-ANSI'! addLineDelimiters @@ -1916,7 +1914,7 @@ indexOfSeparatorOrEndStartingAt:startIndex "return the index of the next whitespace character, starting the search at startIndex, searching forward; - return the index of one behond the end of the receiver if no separator was found. + return the index of one beyond the end of the receiver if no separator was found. To extract the word, copy from startIndex to the returned index-1" |idx| @@ -1933,6 +1931,7 @@ 'hello world ' indexOfSeparatorOrEndStartingAt:7 'helloworld ' indexOfSeparatorOrEndStartingAt:7 'helloworld' indexOfSeparatorOrEndStartingAt:7 + 'helloworld' indexOfSeparatorStartingAt:7 " ! @@ -5852,7 +5851,6 @@ "Modified: 17.4.1997 / 12:50:23 / cg" ! ! - !CharacterArray methodsFor:'special string converting'! asUnixFilenameString @@ -6909,7 +6907,6 @@ " ! ! - !CharacterArray methodsFor:'substring searching'! findRangeOfString:subString