aboutsummaryrefslogtreecommitdiff
path: root/doc/docs/zh/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/docs/zh/doc')
-rwxr-xr-xdoc/docs/zh/doc/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/docs/zh/doc/README.md b/doc/docs/zh/doc/README.md
index 09ba9ee..0aea3d5 100755
--- a/doc/docs/zh/doc/README.md
+++ b/doc/docs/zh/doc/README.md
@@ -2101,7 +2101,7 @@ f1 = (:a, :b, :c) ->
2101f1 a: 1, b: "2", c: {} 2101f1 a: 1, b: "2", c: {}
2102 2102
2103f2 = ({a: a1 = 123, :b = 'abc'}, c = {}) -> 2103f2 = ({a: a1 = 123, :b = 'abc'}, c = {}) ->
2104 print a, b, c 2104 print a1, b, c
2105 2105
2106arg1 = {a: 0} 2106arg1 = {a: 0}
2107f2 arg1, arg2 2107f2 arg1, arg2
@@ -2114,7 +2114,7 @@ f1 = (:a, :b, :c) ->
2114f1 a: 1, b: "2", c: {} 2114f1 a: 1, b: "2", c: {}
2115 2115
2116f2 = ({a: a1 = 123, :b = 'abc'}, c = {}) -> 2116f2 = ({a: a1 = 123, :b = 'abc'}, c = {}) ->
2117 print a, b, c 2117 print a1, b, c
2118 2118
2119arg1 = {a: 0} 2119arg1 = {a: 0}
2120f2 arg1, arg2 2120f2 arg1, arg2