summaryrefslogtreecommitdiffhomepage
path: root/zh-cn
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-08-13 07:43:38 -0700
committerAdam Bard <github@adambard.com>2013-08-13 07:43:38 -0700
commit4ab4e6dcadd2e56b30fe1ce1a2841fd1e73c9a6a (patch)
tree38a8e4cc265d4278ac22273d4810a0884ee7cde9 /zh-cn
parent3840507dbe5e680c085ed5b6e0f2b7fad7264598 (diff)
parent45ddaf5f46ea2e59bb8d8ad9038182d99a2c9550 (diff)
Merge pull request #196 from bcho/master
Improved some translations, added a line break
Diffstat (limited to 'zh-cn')
-rw-r--r--zh-cn/ruby-cn.html.markdown5
1 files changed, 3 insertions, 2 deletions
diff --git a/zh-cn/ruby-cn.html.markdown b/zh-cn/ruby-cn.html.markdown
index 6530b520..619e6e92 100644
--- a/zh-cn/ruby-cn.html.markdown
+++ b/zh-cn/ruby-cn.html.markdown
@@ -94,7 +94,7 @@ x = y = 10 #=> 10
x #=> 10
y #=> 10
-# 按照惯例,用snake_case 作为变量名
+# 按照惯例,用 snake_case 作为变量名
snake_case = true
# 使用具有描述性的运算符
@@ -102,7 +102,8 @@ path_to_project_root = '/good/name/'
path = '/bad/name/'
# 符号(Symbols,也是对象)
-# 符号是不可变的,内部用整数类型表示的可重用的值。通常用它代替字符串来有效地表达有意义的值
+# 符号是不可变的,内部用整数类型表示的可重用的值。
+# 通常用它代替字符串来有效地表示有意义的值。
:pending.class #=> Symbol