Replace RDoc `<i></i>` to Markdown back quotes; ref #4174

parent 20c655dc
...@@ -4,7 +4,7 @@ class Module ...@@ -4,7 +4,7 @@ class Module
# call-seq: # call-seq:
# mod < other -> true, false, or nil # 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. # <code>nil</code> if there's no relationship between the two.
# (Think of the relationship in terms of the class definition: # (Think of the relationship in terms of the class definition:
# "class A < B" implies "A < B".) # "class A < B" implies "A < B".)
...@@ -22,8 +22,8 @@ class Module ...@@ -22,8 +22,8 @@ class Module
# call-seq: # call-seq:
# mod <= other -> true, false, or nil # mod <= other -> true, false, or nil
# #
# Returns true if <i>mod</i> is a subclass of <i>other</i> or # Returns true if `mod` is a subclass of `other` or
# is the same as <i>other</i>. Returns # is the same as `other`. Returns
# <code>nil</code> if there's no relationship between the two. # <code>nil</code> if there's no relationship between the two.
# (Think of the relationship in terms of the class definition: # (Think of the relationship in terms of the class definition:
# "class A < B" implies "A < B".) # "class A < B" implies "A < B".)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment