Are the docs correct for spaceship <=> in String?

Hello all,

First-time poster… I apologize if I am posting to the wrong group.

I am teaching a class of high-schoolers in programming, using Ruby. I
gave them an exercise called “Stupid String Tricks” which was about
getting them comfortable using the online documentation for Ruby. The
assignment was to do five silly things with Strings and share their
results with the class.

While walking through the docs online during class, we decided to dig
into <=> and demonstrate how it works and how to interpret the docs.
We used this page:

http://www.ruby-doc.org/core/classes/String.html#M000778

I thought that page was the authoritative one.

I believe the operator/method behaves correctly, but believe the doc
is not correct.

str <=> other_str => -1, 0, +1

Comparison—Returns -1 if other_str is less than, 0 if other_str is
equal to, and +1 if other_str is greater than str.

Isn’t it the other way around? Shouldn’t the return be -1 if str is
less than other_str? The class behavior and the examples in the docs
all behave that way.

If this is not the right place to get visibility for this, what is?

Thanks in advance.

whats funny, is that the text of the documentation is wrong while the
examples are showing the right behaviour.
I’m sure somebody on this list as autoritative power on this doc!

2008/12/4 [email protected]

On Dec 5, 4:21 pm, Gregory B. [email protected] wrote:

Technical Blaag at:http://blog.majesticseacreature.com
Non-tech stuff at:http://metametta.blogspot.com
“Ruby Best Practices” Book now in O’Reilly Roughcuts:http://rubybestpractices.com

Thanks. I just filed a bug.

whats funny, is that the text of the documentation is wrong while the
examples are showing the right behaviour.

Ouch. Glad to know that the behaviour is right, only the docs are
wrong. I was wondering if some code I made with that was running ok.
:slight_smile:

On Thu, Dec 4, 2008 at 4:38 PM, Louis-Philippe [email protected]
wrote:

whats funny, is that the text of the documentation is wrong while the
examples are showing the right behaviour.
I’m sure somebody on this list as autoritative power on this doc!

You can subscribe and post to ruby-core, and/or file a ticket in Ruby’s
tracker:

-greg