Merge pull request #54 from pjebs/patch-1

fix godoc comments
diff --git a/version.go b/version.go
index 1032c56..30454e1 100644
--- a/version.go
+++ b/version.go
@@ -288,7 +288,7 @@
 	return v.Compare(o) > 0
 }
 
-// GreaterThanOrEqualTo tests if this version is greater than or equal to another version.
+// GreaterThanOrEqual tests if this version is greater than or equal to another version.
 func (v *Version) GreaterThanOrEqual(o *Version) bool {
 	return v.Compare(o) >= 0
 }
@@ -298,7 +298,7 @@
 	return v.Compare(o) < 0
 }
 
-// LessThanOrEqualTo tests if this version is less than or equal to another version.
+// LessThanOrEqual tests if this version is less than or equal to another version.
 func (v *Version) LessThanOrEqual(o *Version) bool {
 	return v.Compare(o) <= 0
 }