SimplePager: fix my goofy indentation (c)

This commit is contained in:
Kyrylo Silin 2013-01-24 04:27:08 +02:00
parent 0bfad583f5
commit 743f76f874
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@ class Pry::Pager
class SimplePager < Pry::Pager
def page
# The pager size minus the number of lines used by the simple pager info bar.
page_size = Pry::Pager.page_size - 3
# The pager size minus the number of lines used by the simple pager info bar.
page_size = Pry::Pager.page_size - 3
text_array = @text.lines.to_a
text_array.each_slice(page_size) do |chunk|