Skip to content

Commit f70013f

Browse files
committedNov 17, 2013
Improve Sexp#inspect
1 parent 903c87f commit f70013f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/opal/parser/sexp.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def ==(other)
5454
alias eql? ==
5555

5656
def inspect
57-
"s(#{@array.map { |e| e.inspect }.join ', '})"
57+
"(#{@array.map { |e| e.inspect }.join ' '})"
5858
end
5959

6060
alias to_s inspect

0 commit comments

Comments
 (0)
Please sign in to comment.