Complex.st
changeset 21873 a2ed604af5c4
parent 21817 5d251e1af13a
child 21932 c033a3755e36
--- a/Complex.st	Wed Jun 21 09:33:29 2017 +0200
+++ b/Complex.st	Wed Jun 21 09:35:15 2017 +0200
@@ -161,7 +161,7 @@
     "Modified (comment): / 12-06-2017 / 20:44:32 / cg"
 ! !
 
-!Complex class methodsFor:'coercing'!
+!Complex class methodsFor:'coercing & converting'!
 
 coerce: aNumber
     "convert the argument aNumber into an instance of the receiver's class and return it."
@@ -380,14 +380,16 @@
 
 !Complex methodsFor:'coercing'!
 
+generality
+    ^ 150
+! !
+
+!Complex methodsFor:'coercing & converting'!
+
 coerce: aNumber
     "convert the argument aNumber into an instance of the receiver's class and return it."
 
     ^ aNumber asComplex
-!
-
-generality
-    ^ 150
 ! !
 
 !Complex methodsFor:'comparing'!