summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorreactormonk <hafnersimon@gmail.com>2015-06-10 12:15:49 -0500
committerreactormonk <hafnersimon@gmail.com>2015-06-10 12:15:49 -0500
commit291e3b90f42a6ea17aaa031c4b5fda1a90df6303 (patch)
tree6aaf132f910d33f09253a64643160ce44dcbe842
parent6c256ddcaef0c92b94d1a3e61f4e56cf7d017b50 (diff)
parent8905ed1dda69dca5cd8a3f1099abb7e3878b842a (diff)
downloadNim-291e3b90f42a6ea17aaa031c4b5fda1a90df6303.tar.gz
Merge pull request #2899 from msiglreith/pr_fix_typo
Fix doc typos in basic2d and basic3d
-rw-r--r--lib/pure/basic2d.nim2
-rw-r--r--lib/pure/basic3d.nim2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/basic2d.nim b/lib/pure/basic2d.nim
index d18e73c16..1392fdeba 100644
--- a/lib/pure/basic2d.nim
+++ b/lib/pure/basic2d.nim
@@ -64,7 +64,7 @@ type
       ## not used for geometric transformations in 2d.
       ax*,ay*,bx*,by*,tx*,ty*:float
     Point2d* = object
-      ## Implements a non-homegeneous 2d point stored as 
+      ## Implements a non-homogeneous 2d point stored as 
       ## an `x` coordinate and an `y` coordinate.
       x*,y*:float
     Vector2d* = object 
diff --git a/lib/pure/basic3d.nim b/lib/pure/basic3d.nim
index b99357e3a..7fea54d58 100644
--- a/lib/pure/basic3d.nim
+++ b/lib/pure/basic3d.nim
@@ -53,7 +53,7 @@ type
     ## [ tx ty tz tw ]
     ax*,ay*,az*,aw*,  bx*,by*,bz*,bw*,  cx*,cy*,cz*,cw*,  tx*,ty*,tz*,tw*:float
   Point3d* = object
-    ## Implements a non-homegeneous 2d point stored as
+    ## Implements a non-homogeneous 3d point stored as
     ## an `x` , `y` and `z` coordinate.
     x*,y*,z*:float
   Vector3d* = object