Skip to content

Commit

Permalink
Merge pull request #34 from pvdb/fix_typo_in_readme
Browse files Browse the repository at this point in the history
Fix small typo in README examples

thanks @pvdb!
  • Loading branch information
jlindsey committed Apr 20, 2018
2 parents 327745b + 899020b commit 54de37b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -38,9 +38,9 @@ new_version = version.increment!(:major) # 1.1.0
new_version = version.increment!(:minor) # 0.2.0
new_version = version.increment!(:patch) # 0.1.1

new_version = verstion.major! # 1.1.0
new_version = verstion.minor! # 0.2.0
new_version = verstion.patch! # 0.1.1
new_version = version.major! # 1.1.0
new_version = version.minor! # 0.2.0
new_version = version.patch! # 0.1.1
# (note: increment! & friends return a copy and leave the original unchanged)
```

Expand Down

0 comments on commit 54de37b

Please sign in to comment.