mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 13:04:13 +02:00
![]() (https://github.com/ruby/rdoc/pull/1219)
There are three distinct ranges of symbols in ASCII:
- the range below "A", 0..64 in decimal
- the range between "Z" and "a", 91..96 in decimal
- the range above "z", 123..127 in decimal
With this change, any method starting with a character in these
"symbol ranges" will be sorted before a method starting with an alpha
ASCII character. The remaining methods, all starting with alpha or
8-bit characters, will be sorted against each other exactly as before.
Specifically this addresses the issue from #1204 which is that `#[]`
and `#^` were previously sorted _after_ the alpha methods. These
methods will now be sorted before alpha methods.
Fixes https://github.com/ruby/rdoc/pull/1204
|
||
---|---|---|
.. | ||
context | ||
alias.rb | ||
anon_class.rb | ||
any_method.rb | ||
attr.rb | ||
class_module.rb | ||
constant.rb | ||
context.rb | ||
extend.rb | ||
ghost_method.rb | ||
include.rb | ||
meta_method.rb | ||
method_attr.rb | ||
mixin.rb | ||
normal_class.rb | ||
normal_module.rb | ||
require.rb | ||
single_class.rb | ||
top_level.rb |