aboutsummaryrefslogtreecommitdiff
path: root/doc/docs/doc/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/docs/doc/README.md')
-rwxr-xr-xdoc/docs/doc/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/docs/doc/README.md b/doc/docs/doc/README.md
index 309e124..5b8fc59 100755
--- a/doc/docs/doc/README.md
+++ b/doc/docs/doc/README.md
@@ -2141,7 +2141,7 @@ f1 = (:a, :b, :c) ->
2141f1 a: 1, b: "2", c: {} 2141f1 a: 1, b: "2", c: {}
2142 2142
2143f2 = ({a: a1 = 123, :b = 'abc'}, c = {}) -> 2143f2 = ({a: a1 = 123, :b = 'abc'}, c = {}) ->
2144 print a, b, c 2144 print a1, b, c
2145 2145
2146arg1 = {a: 0} 2146arg1 = {a: 0}
2147f2 arg1, arg2 2147f2 arg1, arg2
@@ -2154,7 +2154,7 @@ f1 = (:a, :b, :c) ->
2154f1 a: 1, b: "2", c: {} 2154f1 a: 1, b: "2", c: {}
2155 2155
2156f2 = ({a: a1 = 123, :b = 'abc'}, c = {}) -> 2156f2 = ({a: a1 = 123, :b = 'abc'}, c = {}) ->
2157print a, b, c 2157print a1, b, c
2158 2158
2159arg1 = {a: 0} 2159arg1 = {a: 0}
2160f2 arg1, arg2 2160f2 arg1, arg2