summaryrefslogtreecommitdiff
path: root/ext/tk/sample/remote-ip_sample2.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/tk/sample/remote-ip_sample2.rb')
-rw-r--r--ext/tk/sample/remote-ip_sample2.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/tk/sample/remote-ip_sample2.rb b/ext/tk/sample/remote-ip_sample2.rb
index 919bfd0b67..567e60411e 100644
--- a/ext/tk/sample/remote-ip_sample2.rb
+++ b/ext/tk/sample/remote-ip_sample2.rb
@@ -20,13 +20,13 @@ btns = []
ip.eval_proc{
btns <<
TkButton.new(:command=>proc{
- puts 'This procesure is on the controller-ip (Ruby-side)'
+ puts 'This procedure is on the controller-ip (Ruby-side)'
},
:text=>'print on controller-ip (Ruby-side)').pack(:fill=>:x)
btns <<
TkButton.new(:command=>
- 'puts {This procesure is on the remote-ip (Tk-side)}',
+ 'puts {This procedure is on the remote-ip (Tk-side)}',
:text=>'print on remote-ip (Tk-side)').pack(:fill=>:x)
btns <<