Message199

Author bckfnn
Recipients
Date 2000-11-18.19:47:09
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
the method capitalize on String objects seems to incorrectly capitalize the
first letter of the word, but then un-capitalize letters that might be
capitalized in the word, in other words it basaically does a swap:

>> s = "a String"
>> s.capitalize() 
'A string'

I would think rather it should be:

'A String' 

History
Date User Action Args
2008-02-20 17:16:45adminlinkissue222875 messages
2008-02-20 17:16:45admincreate