From b0446f37a61c5e5164b73248a7aaf1f92d30b8de Mon Sep 17 00:00:00 2001 From: zzak Date: Fri, 5 Apr 2013 03:10:14 +0000 Subject: * ext/curses/hello.rb: Typo in Curses example by Drew Blas [Fixes GH-273] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40116 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/curses/hello.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/curses/hello.rb b/ext/curses/hello.rb index 7f57d801a3..f176583a95 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 -- cgit v1.2.3