Eliot Miranda uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-eem.394.mcz==================== Summary ====================
Name: Collections-eem.394
Author: eem
Time: 21 October 2010, 10:24:12.673 am
UUID: c47c656d-31ac-46e8-a56d-c7879a2db324
Ancestors: Collections-eem.393
WriteStream>ensureCr useful for writing to the transcript.
(better name than ensureACr)
=============== Diff against Collections-eem.393 ===============
Item was removed:
- ----- Method: WriteStream>>ensureACr (in category 'character writing') -----
- ensureACr
- "Append a cr character to the receiver IFF there is not one on the end."
-
- self ensureEndsWith: Character cr!
Item was added:
+ ----- Method: WriteStream>>ensureCr (in category 'character writing') -----
+ ensureCr
+ "Append a cr character to the receiver IFF there is not one on the end."
+
+ self ensureEndsWith: Character cr!