summaryrefslogtreecommitdiffhomepage
path: root/mrblib
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2015-06-25 09:55:25 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2015-06-25 09:55:25 +0900
commitdb7e02cd411ee8e62c6503abbf33b8c5446bf8cd (patch)
tree7cd94d959d042a2ae227c99545513aa66fba8027 /mrblib
parent5161909cd7efe783d63270914c0f4b6463c272b5 (diff)
parent25885072858582d3d2f985b405a8e84d58f716e8 (diff)
downloadmruby-db7e02cd411ee8e62c6503abbf33b8c5446bf8cd.tar.gz
mruby-db7e02cd411ee8e62c6503abbf33b8c5446bf8cd.zip
Merge pull request #2858 from franckverrot/remove-unnecessary-backticks
Remove unnecessary backticks
Diffstat (limited to 'mrblib')
-rw-r--r--mrblib/array.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrblib/array.rb b/mrblib/array.rb
index 83a42c62d..933f822db 100644
--- a/mrblib/array.rb
+++ b/mrblib/array.rb
@@ -146,7 +146,7 @@ class Array
# equal, then that inequality is the return value. If all the
# values found are equal, then the return is based on a
# comparison of the array lengths. Thus, two arrays are
- # ``equal'' according to <code>Array#<=></code> if and only if they have
+ # "equal" according to <code>Array#<=></code> if and only if they have
# the same length and the value of each element is equal to the
# value of the corresponding element in the other array.
#