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
This commit is contained in:
stomar 2017-03-01 19:57:14 +00:00
Родитель c1fd1b111d
Коммит 8b71e2532d
1 изменённых файлов: 1 добавлений и 1 удалений

2
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