URI.st
changeset 5216 538e1747a8c9
parent 4881 bdff8a3ce9d6
--- a/URI.st	Wed Sep 11 16:52:34 2019 +0200
+++ b/URI.st	Wed Sep 11 16:55:11 2019 +0200
@@ -70,13 +70,14 @@
 fromString:aString onError:exceptionBlock
     "create an URI from a given String"
 
-    ^ [self fromString:aString] on:Error do:[exceptionBlock value]
+    ^ [self fromString:aString] on:Error do:exceptionBlock
 
     "
-     self fromString:'' onError:nil    
+     self fromString:'' onError:['bla']    
     "
 
     "Modified (format): / 08-02-2017 / 19:16:55 / stefan"
+    "Modified (comment): / 11-09-2019 / 16:31:53 / Stefan Vogel"
 ! !
 
 !URI class methodsFor:'accessing'!