[PATCHES] Fix doc for initcap

2004-06-08 Thread Dennis Bjorklund
Here is a small doc patch that says that initcap lowercases the rest of the characters in the string. The current doc suggests that it only touches the first character in each word, which is not what the function does. Maybe we should change the example to be 'hi THOMAS' instead of 'hi thomas'.

Re: [PATCHES] Fix doc for initcap

2004-02-26 Thread Dennis Bjorklund
On Thu, 26 Feb 2004, Neil Conway wrote: > The improved text is still wrong: initcap() no longer uses whitespace > to separate words. Aha, I didn't know the function had changed at all. How does it work with respect to the locale? When you say that a word is a sequence of alphanum characters, wh

Re: [PATCHES] Fix doc for initcap

2004-02-26 Thread Neil Conway
Dennis Bjorklund <[EMAIL PROTECTED]> writes: > Here is a small doc patch that says that initcap lowercases the rest > of the characters in the string. The current doc suggests that it > only touches the first character in each word, which is not what the > function does. The improved text is still