From 8b71e2532df2889630eb706d71034fbab5551f0a Mon Sep 17 00:00:00 2001 From: stomar Date: Wed, 1 Mar 2017 19:57:14 +0000 Subject: [PATCH] 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 --- hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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