diff options
author | Kazuhiro NISHIYAMA <[email protected]> | 2022-05-16 23:40:24 +0900 |
---|---|---|
committer | git <[email protected]> | 2022-05-16 23:43:04 +0900 |
commit | f2dc97294086c31604a45ee350c4fa5d51762f45 (patch) | |
tree | 3017db6f54b00f0e11389135f19d14fe4c240706 /lib/set.rb | |
parent | f626998c4fa62973cac3a027597f97cdacd0d3c5 (diff) |
[ruby/set] Fix a typo
https://github.com/ruby/set/commit/71a876ae81
Diffstat (limited to 'lib/set.rb')
-rw-r--r-- | lib/set.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/set.rb b/lib/set.rb index 54bcc7b7e2..0490654183 100644 --- a/lib/set.rb +++ b/lib/set.rb @@ -134,7 +134,7 @@ # Returns whether a given object is a subset of the set. # - \#proper_subset? (aliased as [<](#method-i-3C)): # Returns whether a given enumerable is a proper subset of the set. -# - \#superset? (aliased as [<=](#method-i-3E-3D])): +# - \#superset? (aliased as [>=](#method-i-3E-3D])): # Returns whether a given enumerable is a superset of the set. # - \#proper_superset? (aliased as [>](#method-i-3E)): # Returns whether a given enumerable is a proper superset of the set. |