diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-08-01 09:26:23 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-08-01 09:26:23 +0900 |
| commit | d88667669048d45a48c0920866b890b1a821e07a (patch) | |
| tree | 6965a619abce7c3f5bb441d8b5856eeba5c71989 | |
| parent | beb6e5c299bb411a7f2a9e355e6eeca3aa785c74 (diff) | |
| parent | 64748691dea95312c80c1fe7b9e960f53ea5b28a (diff) | |
| download | mruby-d88667669048d45a48c0920866b890b1a821e07a.tar.gz mruby-d88667669048d45a48c0920866b890b1a821e07a.zip | |
Merge pull request #4074 from znz/patch-1
Remove unmatched quotation mark
| -rw-r--r-- | doc/limitations.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/limitations.md b/doc/limitations.md index e0c999aa6..92858cb1f 100644 --- a/doc/limitations.md +++ b/doc/limitations.md @@ -215,14 +215,14 @@ future, the simpler behavior will be adopted to CRuby as well. #### Ruby [ruby 2.5.1p57 (2018-03-29 revision 63029)] ``` -$ ruby -e 'def m(*r,**k) p [r,k] end; m("a"'=>1,:b=>2)' +$ ruby -e 'def m(*r,**k) p [r,k] end; m("a"=>1,:b=>2)' [[{"a"=>1}], {:b=>2}] ``` #### mruby [] ``` -$ ./bin/mruby -e 'def m(*r,**k) p [r,k] end; m("a"'=>1,:b=>2)' +$ ./bin/mruby -e 'def m(*r,**k) p [r,k] end; m("a"=>1,:b=>2)' trace (most recent call last): [0] -e:1 -e:1: keyword argument hash with non symbol keys (ArgumentError) |
