From daed91295479ff3e981bcc9e395721ba4057c79e Mon Sep 17 00:00:00 2001 From: sho-h Date: Thu, 7 May 2015 13:28:03 +0000 Subject: * proc.c: [DOC] fix Binding#local_variable_set example. [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50439 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ proc.c | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7e40b29aa4..d763030a88 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu May 7 22:22:59 2015 Sho Hashimoto + + * proc.c: [DOC] fix Binding#local_variable_set example. [ci skip] + Thu May 7 11:32:57 2015 NARUSE, Yui * Makefile.in (rbconfig.rb): add rule to make. diff --git a/proc.c b/proc.c index db79870b2d..44ec281273 100644 --- a/proc.c +++ b/proc.c @@ -476,12 +476,12 @@ bind_local_variable_get(VALUE bindval, VALUE sym) * * def foo * a = 1 - * b = binding - * b.local_variable_set(:a, 2) # set existing local variable `a' - * b.local_variable_set(:b, 3) # create new local variable `b' - * # `b' exists only in binding. - * b.local_variable_get(:a) #=> 2 - * b.local_variable_get(:b) #=> 3 + * bind = binding + * bind.local_variable_set(:a, 2) # set existing local variable `a' + * bind.local_variable_set(:b, 3) # create new local variable `b' + * # `b' exists only in binding. + * p bind.local_variable_get(:a) #=> 2 + * p bind.local_variable_get(:b) #=> 3 * p a #=> 2 * p b #=> NameError * end -- cgit v1.2.3