aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-10 00:19:44 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-10 00:19:44 +0000
commitff1abb036765bfccb9f7d65a3200c94802ecac68 (patch)
treedaa8273faab2bc4cca562aef4c1cf4cc0edf4777
parent70973af1d577756bd7b6dc236f3f2d53d9cfdd25 (diff)
downloadruby-ff1abb036765bfccb9f7d65a3200c94802ecac68.tar.gz
* proc.c: [DOC] rdoc code formatting
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42480 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--proc.c46
2 files changed, 27 insertions, 23 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d3f6a8eae..c15e6260b7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Aug 10 09:19:04 2013 Zachary Scott <e@zzak.io>
+
+ * proc.c: [DOC] rdoc code formatting
+
Sat Aug 10 09:12:01 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (rb_id_attrset): check if the argument is valid type as an
diff --git a/proc.c b/proc.c
index e9d53c5834..6fd3981ef6 100644
--- a/proc.c
+++ b/proc.c
@@ -448,15 +448,15 @@ check_local_id(VALUE bindval, volatile VALUE *pname)
*
* Returns a +value+ of local variable +symbol+.
*
- * def foo
- * a = 1
- * binding.local_variable_get(:a) #=> 1
- * binding.local_variable_get(:b) #=> NameError
- * end
+ * def foo
+ * a = 1
+ * binding.local_variable_get(:a) #=> 1
+ * binding.local_variable_get(:b) #=> NameError
+ * end
*
* This method is short version of the following code.
*
- * binding.eval("#{symbol}")
+ * binding.eval("#{symbol}")
*
*/
static VALUE
@@ -485,17 +485,17 @@ bind_local_variable_get(VALUE bindval, VALUE sym)
*
* Set local variable named +symbol+ as +obj+.
*
- * 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
- * p a #=> 2
- * p b #=> NameError
- * end
+ * 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
+ * p a #=> 2
+ * p b #=> NameError
+ * end
*
* This method is a similar behavior of the following code
*
@@ -529,15 +529,15 @@ bind_local_variable_set(VALUE bindval, VALUE sym, VALUE val)
*
* Returns a +true+ if a local variable +symbol+ exists.
*
- * def foo
- * a = 1
- * binding.local_variable_defined?(:a) #=> true
- * binding.local_variable_defined?(:b) #=> false
- * end
+ * def foo
+ * a = 1
+ * binding.local_variable_defined?(:a) #=> true
+ * binding.local_variable_defined?(:b) #=> false
+ * end
*
* This method is short version of the following code.
*
- * binding.eval("defined?(#{symbol}) == 'local-variable'")
+ * binding.eval("defined?(#{symbol}) == 'local-variable'")
*
*/
static VALUE