Skip to content

Commit

Permalink
rectify multiple assignment example (#681)
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul404 committed Apr 26, 2020
1 parent c64f99d commit 7d89250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/AST_FORMAT.md
Expand Up @@ -637,7 +637,7 @@ Format:
(masgn (mlhs (ivasgn :@a) (cvasgn :@@b)) (array (splat (lvar :c))))
"@a, @@b = *c"
(masgn (mlhs (mlhs (lvasgn :a) (lvasgn :b)) (lvasgn :c)) (lvar :d))
(masgn (mlhs (lvasgn :a) (mlhs (lvasgn :b)) (lvasgn :c)) (lvar :d))
"a, (b, c) = d"
(masgn (mlhs (send (self) :a=) (send (self) :[]= (int 1))) (lvar :a))
Expand Down

0 comments on commit 7d89250

Please sign in to comment.