renggli / dart-more

More Dart — Literally.
http://pub.dartlang.org/packages/more
MIT License
86 stars 7 forks source link

Ordering example incorrect [documentation] #5

Closed awhitford closed 4 years ago

awhitford commented 4 years ago

Minor documentation bug for Ordering class. The example:

var natural = new Ordering.natural();
natural.compare(1, 2);  // 1

Wouldn't the compare result be -1 signifying that 1 is less than 2?

renggli commented 4 years ago

Thank you for reporting. The example was not only buggy, but it also was no longer working with Dart 2.0+.