diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-12-07 19:06:11 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-12-07 19:06:11 +0000 |
commit | 62201638e6ec28fb9b9dc0ce79487a6b4c47ea35 (patch) | |
tree | 695dc3b54c3fe6a26492be0fb699f715a971efe4 /proc.c | |
parent | ecf5c9f408b0092aa82056a9f31a75fe7253e2d7 (diff) | |
download | ruby-62201638e6ec28fb9b9dc0ce79487a6b4c47ea35.tar.gz ruby-62201638e6ec28fb9b9dc0ce79487a6b4c47ea35.tar.xz ruby-62201638e6ec28fb9b9dc0ce79487a6b4c47ea35.zip |
rdoc update.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@26046 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r-- | proc.c | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -1170,17 +1170,16 @@ rb_obj_public_method(VALUE obj, VALUE vid) * def do_e() print "!\n"; end * def do_v() print "Dave"; end * Dispatcher = { - * ?a => instance_method(:do_a), - * ?d => instance_method(:do_d), - * ?e => instance_method(:do_e), - * ?v => instance_method(:do_v) + * "a" => instance_method(:do_a), + * "d" => instance_method(:do_d), + * "e" => instance_method(:do_e), + * "v" => instance_method(:do_v) * } * def interpret(string) - * string.each_byte {|b| Dispatcher[b].bind(self).call } + * string.each_char {|b| Dispatcher[b].bind(self).call } * end * end * - * * interpreter = Interpreter.new * interpreter.interpret('dave') * |