#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Mon, 13 Feb 2017 20:42:26 +0100
changeset 21430 efccd218ce9c
parent 21429 f926511bf350
child 21431 e3a47227faa1
#DOCUMENTATION by cg class: Point comment/format in: #ceiling
Point.st
--- a/Point.st	Mon Feb 13 20:26:16 2017 +0100
+++ b/Point.st	Mon Feb 13 20:42:26 2017 +0100
@@ -669,10 +669,12 @@
      Return the receiver if its coordinates are already integral."
 
     (x isInteger and:[y isInteger]) ifTrue: [
-	^ self
+        ^ self
     ].
 
     ^ self class x:x ceiling y:y ceiling.
+
+    "Modified (comment): / 13-02-2017 / 20:28:47 / cg"
 !
 
 floor