diff -r 16ebee6b698d -r 44b03221ff92 FileBrowser.st --- a/FileBrowser.st Sat Jun 14 11:05:30 2014 +0200 +++ b/FileBrowser.st Sat Jun 14 11:06:50 2014 +0200 @@ -2140,7 +2140,7 @@ ! fileEncoding - "open a dialog to allow change of the files character encoding. + "open a dialog to allow change of the file's character encoding. Files are converted to internal encoding when read, and converted back to this encoding when saved. The default encoding is nil, which means that files are already in @@ -2464,7 +2464,7 @@ infoDir at:fn put:(fn fileSize) ]. - "/ for each, get the files size. + "/ for each, get the file's size. "/ in a first pass, look for files of the same size and "/ compare them ... @@ -2563,7 +2563,7 @@ infoDir at:fn put:(fn info) ]. - "/ for each, get the files size. + "/ for each, get the file's size. "/ in a first pass, look for files of the same size and "/ compare them ... @@ -5944,7 +5944,7 @@ readFile:fileName lineDelimiter:aCharacter encoding:encoding "read in the file, return its contents as StringCollection. - The files lines are delimited by aCharacter. + The file's lines are delimited by aCharacter. If encoding is nonNil, the file is assumed to be coded according to that symbol, and #decodeString: should be able to convert it." @@ -5988,7 +5988,7 @@ readStream:aStream lineDelimiter:aCharacter encoding:fileEncodingArg "read from aStream, answer its contents as StringCollection. - The files lines are delimited by aCharacter. + The file's lines are delimited by aCharacter. If encoding is nonNil, the file is assumed to be coded according to that symbol, and #decodeString: should be able to convert it." @@ -7443,10 +7443,10 @@ !FileBrowser class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/FileBrowser.st,v 1.661 2014-06-06 07:30:25 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libtool/FileBrowser.st,v 1.662 2014-06-14 09:06:50 cg Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libtool/FileBrowser.st,v 1.661 2014-06-06 07:30:25 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libtool/FileBrowser.st,v 1.662 2014-06-14 09:06:50 cg Exp $' ! !