Skip to content

Commit 6009b3e

Browse files
committed
Add a space after a comma
1 parent d014cc8 commit 6009b3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/reline/windows.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ def self.clear_screen
383383
return unless csbi = get_console_screen_buffer_info
384384
buffer_width = csbi[0, 2].unpack1('S')
385385
attributes = csbi[8, 2].unpack1('S')
386-
_window_left, window_top, _window_right, window_bottom = *csbi[10,8].unpack('S*')
386+
_window_left, window_top, _window_right, window_bottom = *csbi[10, 8].unpack('S*')
387387
fill_length = buffer_width * (window_bottom - window_top + 1)
388388
screen_topleft = window_top * 65536
389389
written = 0.chr * 4

0 commit comments

Comments
 (0)