MessageNotUnderstood.st
changeset 23286 12a32821f2f1
parent 23169 012958580544
child 23656 e7b73c09e3d5
--- a/MessageNotUnderstood.st	Wed Aug 15 23:28:49 2018 +0200
+++ b/MessageNotUnderstood.st	Wed Aug 15 23:30:26 2018 +0200
@@ -185,7 +185,7 @@
 
         "/ assume that it might be ok with other prog. languages
         (searchClass notNil and:[ searchClass programmingLanguage isSmalltalk ]) ifTrue:[
-            description := description , ' does not understand nonSymbol: ' , sel printString.
+            description := description , ' does not understand (nonSymbol): ' , sel printString.
             "/ description := sel printString, ' (nonSymbol) not understood by ' ,  description.
         ] ifFalse:[
             description := description , ' does not implement: ' , sel printString.
@@ -202,7 +202,7 @@
     "
 
     "Modified: / 19-08-2010 / 15:33:03 / cg"
-    "Modified: / 02-07-2018 / 00:19:07 / Claus Gittinger"
+    "Modified: / 15-08-2018 / 21:26:02 / Claus Gittinger"
 ! !
 
 !MessageNotUnderstood class methodsFor:'documentation'!