The Trunk: Collections-fbs.501.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Collections-fbs.501.mcz

commits-2
Frank Shearar uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-fbs.501.mcz

==================== Summary ====================

Name: Collections-fbs.501
Author: fbs
Time: 12 February 2013, 9:33:45.587 am
UUID: 2ae8b43b-e07f-4c95-bf5f-894a35fe3245
Ancestors: Collections-cmm.500

Typo correction.

=============== Diff against Collections-cmm.500 ===============

Item was changed:
  ----- Method: String>>asCamelCase (in category 'converting') -----
  asCamelCase
+ "Convert to CamelCase. Can be convenient
- "Convert to CamelCase. Can be conveinient
  in conjunction with #asLegalSelector
  'A man, a plan, a canal, panama' asCamelCase.
  'A man, a plan, a canal, panama' asCamelCase asLegalSelector.
  'Here 123should % be 6 the name6 of the method' asCamelCase.
  'Here 123should % be 6 the name6 of the method' asCamelCase asLegalSelector."
 
  ^ self class streamContents: [:stream |
  self substrings do: [:sub |
  stream nextPutAll: sub capitalized]]!