Complex.st
changeset 20408 057d56a62260
parent 18836 63832ff17b6c
child 20578 39641ba8d6e0
child 20740 f6574113b828
--- a/Complex.st	Thu Sep 22 15:04:54 2016 +0200
+++ b/Complex.st	Thu Sep 22 15:05:05 2016 +0200
@@ -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