summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-class-ext
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-12-04 08:39:44 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2018-12-04 08:39:44 +0900
commit6ef4a5fd6b28375ec7c4f066cf8c5364256f83fd (patch)
tree5b441ea4e18ac7f487e8572a315e9f60a7328b42 /mrbgems/mruby-class-ext
parent20c655dc45a024e87a646852736c49ec61910e45 (diff)
downloadmruby-6ef4a5fd6b28375ec7c4f066cf8c5364256f83fd.tar.gz
mruby-6ef4a5fd6b28375ec7c4f066cf8c5364256f83fd.zip
Replace RDoc `<i></i>` to Markdown back quotes; ref #4174
Diffstat (limited to 'mrbgems/mruby-class-ext')
-rw-r--r--mrbgems/mruby-class-ext/mrblib/module.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/mrbgems/mruby-class-ext/mrblib/module.rb b/mrbgems/mruby-class-ext/mrblib/module.rb
index d35b4cbae..484d63674 100644
--- a/mrbgems/mruby-class-ext/mrblib/module.rb
+++ b/mrbgems/mruby-class-ext/mrblib/module.rb
@@ -4,7 +4,7 @@ class Module
# call-seq:
# mod < other -> true, false, or nil
#
- # Returns true if <i>mod</i> is a subclass of <i>other</i>. Returns
+ # Returns true if `mod` is a subclass of `other`. Returns
# <code>nil</code> if there's no relationship between the two.
# (Think of the relationship in terms of the class definition:
# "class A < B" implies "A < B".)
@@ -22,8 +22,8 @@ class Module
# call-seq:
# mod <= other -> true, false, or nil
#
- # Returns true if <i>mod</i> is a subclass of <i>other</i> or
- # is the same as <i>other</i>. Returns
+ # Returns true if `mod` is a subclass of `other` or
+ # is the same as `other`. Returns
# <code>nil</code> if there's no relationship between the two.
# (Think of the relationship in terms of the class definition:
# "class A < B" implies "A < B".)