Actions
Bug #5357
closedIndentation of nested operators should nest
Bug #5357:
Indentation of nested operators should nest
Description
Hi!
Currently,
return if
hash.
values_at(:a, :b, :c).
reject{ |e| e.nil? or e.empty? }.
empty?
is indented
as
return if
hash.
values_at(:a, :b, :c).
reject{ |e| e.nil? or e.empty? }.
empty?
I would prefer it to be indented as in the first example.
Actions