summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-08-07 18:42:01 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-08-07 18:42:01 +0000
commitcdb58a19cc02e59ad632860794f924383f24da61 (patch)
tree3c8405c34519b7095ad4e43328301209d0eca2fe /hash.c
parent48baa71ec691f3dea31e6b5b35a85bb8e7cecc6a (diff)
* hash.c: [DOC] Improve description of symbol key syntax
Patch by Raphael Das Gupta in documenting-ruby/ruby#51: https://github.com/documenting-ruby/ruby/pull/51 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 4d5b4c63df..3cdc75e20c 100644
--- a/hash.c
+++ b/hash.c
@@ -3909,7 +3909,7 @@ env_update(VALUE env, VALUE hash)
*
* grades = { "Jane Doe" => 10, "Jim Doe" => 6 }
*
- * Hashes allow an alternate syntax form when your keys are always symbols.
+ * Hashes allow an alternate syntax for keys that are symbols.
* Instead of
*
* options = { :font_size => 10, :font_family => "Arial" }