CharacterArray.st
changeset 1311 367f740d21e7
parent 1308 cf41289a7ce2
child 1312 0003988bb066
--- a/CharacterArray.st	Sat Apr 27 13:22:18 1996 +0200
+++ b/CharacterArray.st	Sat Apr 27 13:25:31 1996 +0200
@@ -2734,13 +2734,13 @@
 !CharacterArray methodsFor:'queries'!
 
 encoding
-    "return the strings encoding, a symbol.
-     Here, by default, we assume iso8859 encoding.
+    "return the strings encoding, as a symbol.
+     Here, by default, we assume #iso8859 encoding.
      This has to be redefined in XXXEncodedString subclasses."
 
-    ^ #is8859
-
-    "Modified: 20.4.1996 / 23:14:18 / cg"
+    ^ #iso8859
+
+    "Modified: 27.4.1996 / 13:23:49 / cg"
 !
 
 isString
@@ -3673,5 +3673,5 @@
 !CharacterArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.79 1996-04-27 09:59:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.80 1996-04-27 11:25:31 cg Exp $'
 ! !