Marcel Taeumel uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-mt.691.mcz==================== Summary ====================
Name: Collections-mt.691
Author: mt
Time: 7 May 2016, 10:24:05.360568 am
UUID: 81841163-90dd-154a-9adb-f8471b7d09af
Ancestors: Collections-ul.690
Adds comment to TextReadWriter to explain the idea behind it.
=============== Diff against Collections-ul.690 ===============
Item was changed:
Object subclass: #TextReadWriter
instanceVariableNames: 'stream'
classVariableNames: ''
poolDictionaries: ''
category: 'Collections-Text'!
+
+ !TextReadWriter commentStamp: 'mt 5/7/2016 10:22' prior: 0!
+ Subclasses of me provide means to create instances of Text from various document formats such as HTML (Hyper Text Markup Language), DOCX (Microsoft Word Document), ODF (Open Document Format), and RTF (Rich Text Format). They should also be able to write such formats.!