mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-01-17 13:38:38 +01:00
fix typo
`查询一个不存在地键将会返回nil` ->`查询一个不存在的键将会返回nil`
This commit is contained in:
parent
43ce42005e
commit
da31b7080c
@ -214,7 +214,7 @@ hash.keys #=> ['color', 'number']
|
|||||||
hash['color'] #=> 'green'
|
hash['color'] #=> 'green'
|
||||||
hash['number'] #=> 5
|
hash['number'] #=> 5
|
||||||
|
|
||||||
# 查询一个不存在地键将会返回nil
|
# 查询一个不存在的键将会返回nil
|
||||||
hash['nothing here'] #=> nil
|
hash['nothing here'] #=> nil
|
||||||
|
|
||||||
# 从Ruby 1.9开始,用符号作为键的时候有特别的记号表示:
|
# 从Ruby 1.9开始,用符号作为键的时候有特别的记号表示:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user