summaryrefslogtreecommitdiff
path: root/vm_eval.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-03-05 20:25:08 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-03-05 20:25:08 +0000
commit18f4f0888513be990c164ecd5b3ea92e24570240 (patch)
tree5e1b033fb2b21d5158d84b65caffd35f9a602ad5 /vm_eval.c
parent7f1362a84e692ad84aa412d7b51490401b58efed (diff)
* class.c: fix camelCase to snake_case in documentation code examples.
patched by Andrew Grimm. fixes Bug #4469 * marshal.c: ditto. * proc.c: ditto. * sample/biorhythm.rb: ditto. * vm_eval.c: ditto. * vm_method.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31031 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_eval.c')
-rw-r--r--vm_eval.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/vm_eval.c b/vm_eval.c
index ce7057476c..54debd7fec 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -459,12 +459,12 @@ NORETURN(static void raise_method_missing(rb_thread_t *th, int argc, const VALUE
* values.
*
* class Roman
- * def romanToInt(str)
+ * def roman_to_int(str)
* # ...
* end
* def method_missing(methId)
* str = methId.id2name
- * romanToInt(str)
+ * roman_to_int(str)
* end
* end
*
@@ -1082,12 +1082,12 @@ eval_string(VALUE self, VALUE src, VALUE scope, const char *file, int line)
* optional <em>filename</em> and <em>lineno</em> parameters are
* present, they will be used when reporting syntax errors.
*
- * def getBinding(str)
+ * def get_binding(str)
* return binding
* end
* str = "hello"
* eval "str + ' Fred'" #=> "hello Fred"
- * eval "str + ' Fred'", getBinding("bye") #=> "bye Fred"
+ * eval "str + ' Fred'", get_binding("bye") #=> "bye Fred"
*/
VALUE