Complex.st
branchjv
changeset 20578 39641ba8d6e0
parent 18858 2968df243134
parent 20408 057d56a62260
child 21024 8734987eb5c7
--- a/Complex.st	Tue Sep 20 11:37:33 2016 +0100
+++ b/Complex.st	Mon Oct 03 12:44:41 2016 +0100
@@ -304,7 +304,7 @@
 
 abs
     "Return the magnitude (or absolute value) of the complex number
-     (thats the distance from the origin in the complex plane)."
+     (that's the distance from the origin in the complex plane)."
 
     ^ (real * real + (imaginary * imaginary)) sqrt