aboutsummaryrefslogtreecommitdiffstats
path: root/vm_eval.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-28 03:33:35 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-28 03:33:35 +0000
commitde0ef1a9dfd9f966ad7e667788f3e333944d959e (patch)
tree53bbb3c3560a6f548021486afbf423e740740774 /vm_eval.c
parent832bc50768fe42f95f8dda0483f0ba1556175c9d (diff)
downloadruby-de0ef1a9dfd9f966ad7e667788f3e333944d959e.tar.gz
[DOC] fix markups [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67354 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_eval.c')
-rw-r--r--vm_eval.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/vm_eval.c b/vm_eval.c
index c537ecce31..a4d5835720 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -1357,10 +1357,10 @@ eval_string_with_scope(VALUE scope, VALUE src, VALUE file, int line)
* eval(string [, binding [, filename [,lineno]]]) -> obj
*
* Evaluates the Ruby expression(s) in <em>string</em>. If
- * <em>binding</em> is given, which must be a <code>Binding</code>
- * object, the evaluation is performed in its context. If the
- * optional <em>filename</em> and <em>lineno</em> parameters are
- * present, they will be used when reporting syntax errors.
+ * <em>binding</em> is given, which must be a Binding object, the
+ * evaluation is performed in its context. If the optional
+ * <em>filename</em> and <em>lineno</em> parameters are present, they
+ * will be used when reporting syntax errors.
*
* def get_binding(str)
* return binding
@@ -1850,7 +1850,7 @@ uncaught_throw_to_s(VALUE exc)
* is no +catch+ block for the _tag_. The optional second
* parameter supplies a return value for the +catch+ block,
* which otherwise defaults to +nil+. For examples, see
- * <code>Kernel::catch</code>.
+ * Kernel::catch.
*/
static VALUE