summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAman Gupta <aman@tmm1.net>2015-09-20 18:24:38 -0700
committerAman Gupta <aman@tmm1.net>2015-09-20 18:24:38 -0700
commit50b44066949e912855855ba4b34ff2eb6fd7c410 (patch)
tree8c57ea70be333f799b55c8890e83944ac4240fff
parentd93ae34d2a03c87ea536b78a45048d2f2c0ebb1c (diff)
downloadNim-50b44066949e912855855ba4b34ff2eb6fd7c410.tar.gz
s/acces/access/g
-rw-r--r--lib/pure/basic2d.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/basic2d.nim b/lib/pure/basic2d.nim
index ad8f8653d..cee3bada4 100644
--- a/lib/pure/basic2d.nim
+++ b/lib/pure/basic2d.nim
@@ -93,11 +93,11 @@ let
   IDMATRIX*:Matrix2d=matrix2d(1.0,0.0,0.0,1.0,0.0,0.0)
     ## Quick access to an identity matrix
   ORIGO*:Point2d=point2d(0.0,0.0)
-    ## Quick acces to point (0,0)
+    ## Quick access to point (0,0)
   XAXIS*:Vector2d=vector2d(1.0,0.0)
-    ## Quick acces to an 2d x-axis unit vector
+    ## Quick access to an 2d x-axis unit vector
   YAXIS*:Vector2d=vector2d(0.0,1.0)
-    ## Quick acces to an 2d y-axis unit vector
+    ## Quick access to an 2d y-axis unit vector
 
 
 # ***************************************