Trailing whitespace cleanup from files in the Code directory.

Used the following command from within the Code dir:
git ls-files *.m *.h *.json | xargs /usr/bin/sed -i '' -E 's/[[:space:]]*$//'
This commit is contained in:
Jawwad Ahmad
2012-09-02 12:47:54 -04:00
parent c70ab49457
commit 8cbdb5f7ed
46 changed files with 250 additions and 250 deletions

View File

@@ -34,7 +34,7 @@
/**
The set of stop words that are to be removed from the token set.
Defaults to nil.
*/
@property (nonatomic, strong) NSSet *stopWords;
@@ -47,7 +47,7 @@
Tokenizes the given string by folding it case and diacritic insensitively and then
splitting it apart using the the word unit delimiters for the current locale. If a set
of stop words has been provided, the resulting token set will have the stop words subtracted.
@param string A string of text you wish to tokenize.
@returns A set of searchable text tokens extracted from the given string.
*/