From d8316a34e7b9ca1b0c178e3a7f091d6b820f6902 Mon Sep 17 00:00:00 2001 From: Zafar Khaja Date: Thu, 7 Mar 2013 19:25:40 +0400 Subject: [PATCH] Fix a typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 515f167..ca76a97 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ String str = v1.toString(); // "1.2.3" ### Comparing Versions ### Comparing versions with Java SemVer is easy. The `Version` class implements the -`Comparable` interface, it also overrides the `Object.equal(Object obj)` method +`Comparable` interface, it also overrides the `Object.equals(Object obj)` method and provides some more methods for convenient comparing. ```java