summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Delchev <kdelchev@users.noreply.github.com>2015-04-03 16:27:10 +0300
committerKonstantin Delchev <kdelchev@users.noreply.github.com>2015-04-03 16:27:10 +0300
commitebded1e62e17aa39ba3fb37d4ce8d96412098103 (patch)
treeaf590775c303a6234d20bae4362dc8970bb656e1
parente764bb35ab4c556736c772a036790f349ff208a3 (diff)
downloadhashie-ebded1e62e17aa39ba3fb37d4ce8d96412098103.tar.gz
Minor fix in doc
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 3154773..b8df22e 100644
--- a/README.md
+++ b/README.md
@@ -154,7 +154,7 @@ Hashie also has a utility method for converting keys on a Hash without a mixin:
```ruby
Hashie.symbolize_keys! hash # => Symbolizes keys of hash.
Hashie.symbolize_keys hash # => Returns a copy of hash with keys symbolized.
-Hashie.stringify_keys hash # => Stringifies keys of hash.
+Hashie.stringify_keys! hash # => Stringifies keys of hash.
Hashie.stringify_keys hash # => Returns a copy of hash with keys stringified.
```