summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--dragon/console_prompt.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/dragon/console_prompt.rb b/dragon/console_prompt.rb
index 97ea2f9..8c02de0 100644
--- a/dragon/console_prompt.rb
+++ b/dragon/console_prompt.rb
@@ -158,11 +158,11 @@ S
# partition the original list of items into a string to be printed
items.each_slice(columns).each_with_index do |cells, i|
- pretty_print_row_seperator string_width, cell_width, column_width, columns
+ pretty_print_row_separator string_width, cell_width, column_width, columns
pretty_print_row cells, string_width, cell_width, column_width, columns
end
- pretty_print_row_seperator string_width, cell_width, column_width, columns
+ pretty_print_row_separator string_width, cell_width, column_width, columns
end
end