aboutsummaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorstomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-01 19:57:14 +0000
committerstomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-01 19:57:14 +0000
commitf0221a52aa170906cd394bb68433a572f80a0e19 (patch)
tree09219aa78de9f8f8ef12f235406acf7674a80473 /hash.c
parent2641ee65da28d53cfed1430958ae7eb7e372a767 (diff)
downloadruby-f0221a52aa170906cd394bb68433a572f80a0e19.tar.gz
hash.c: [DOC] fix book title in example
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57753 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 3b2b6c61ca..b583390819 100644
--- a/hash.c
+++ b/hash.c
@@ -4363,7 +4363,7 @@ env_update(VALUE env, VALUE hash)
* Hashes are an easy way to represent data structures, such as
*
* books = {}
- * books[:matz] = "The Ruby Language"
+ * books[:matz] = "The Ruby Programming Language"
* books[:black] = "The Well-Grounded Rubyist"
*
* Hashes are also commonly used as a way to have named parameters in