diff options
| author | leviongit <[email protected]> | 2021-08-25 20:28:03 +0200 |
|---|---|---|
| committer | Amir Rajan <[email protected]> | 2021-09-06 05:37:55 -0500 |
| commit | dae203d736b9d6db00c10a75208f44a3a937442f (patch) | |
| tree | 9212be009fe499b085b5250eb819c2d0d2fc9eaa | |
| parent | a1b8552ae442d1fa22df1e569652eb99750dcebf (diff) | |
| download | dragonruby-game-toolkit-contrib-dae203d736b9d6db00c10a75208f44a3a937442f.tar.gz dragonruby-game-toolkit-contrib-dae203d736b9d6db00c10a75208f44a3a937442f.zip | |
fix: console raising error at autocomplete request
| -rw-r--r-- | dragon/console_prompt.rb | 4 |
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 |
