[squeak-dev] The Trunk: Collections-fbs.501.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Feb 12 09:34:41 UTC 2013


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]]!



More information about the Squeak-dev mailing list