Skip to content

Commit

Permalink
Improve Sexp#inspect
Browse files Browse the repository at this point in the history
  • Loading branch information
adambeynon committed Nov 17, 2013
1 parent 903c87f commit f70013f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/opal/parser/sexp.rb
Expand Up @@ -54,7 +54,7 @@ def ==(other)
alias eql? ==

def inspect
"s(#{@array.map { |e| e.inspect }.join ', '})"
"(#{@array.map { |e| e.inspect }.join ' '})"
end

alias to_s inspect
Expand Down

0 comments on commit f70013f

Please sign in to comment.