fixed indentation inside conditional

This commit is contained in:
Lee Jarvis 2011-05-19 18:33:33 +01:00
parent f781714277
commit 1409d162c6
1 changed files with 2 additions and 2 deletions

View File

@ -4,9 +4,9 @@ class Pry
DEFAULT_PROMPT = [
proc { |target_self, nest_level|
if nest_level == 0
"pry(#{Pry.view_clip(target_self)})> "
"pry(#{Pry.view_clip(target_self)})> "
else
"pry(#{Pry.view_clip(target_self)}):#{Pry.view_clip(nest_level)}> "
"pry(#{Pry.view_clip(target_self)}):#{Pry.view_clip(nest_level)}> "
end
},