aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--proc.c12
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 <sho-h@ruby-lang.org>
+
+ * proc.c: [DOC] fix Binding#local_variable_set example. [ci skip]
+
Thu May 7 11:32:57 2015 NARUSE, Yui <naruse@ruby-lang.org>
* 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