summaryrefslogtreecommitdiff
path: root/ext/curses/hello.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/curses/hello.rb')
-rw-r--r--ext/curses/hello.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/curses/hello.rb b/ext/curses/hello.rb
index a1915ce60d..7f57d801a3 100644
--- a/ext/curses/hello.rb
+++ b/ext/curses/hello.rb
@@ -7,7 +7,7 @@ def show_message(message)
width = message.length + 6
win = Window.new(5, width,
(lines - 5) / 2, (cols - width) / 2)
- win.box(?|, ?=)
+ win.box(?|, ?-)
win.setpos(2, 3)
win.addstr(message)
win.refresh