Fix a typo in README

This commit is contained in:
Zafar Khaja 2013-03-07 19:25:40 +04:00
parent 66db83b3a4
commit d8316a34e7
1 changed files with 1 additions and 1 deletions

View File

@ -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