[Trait Ord](http://doc.rust-lang.org/std/cmp/trait.Ord.html) and [PartialOrd](http://doc.rust-lang.org/std/cmp/trait.PartialOrd.html) have cryptic explanations. An example would be helpful. I thought these would be valid examples: ``` // [1,2,3,4,5,6] -> Ord - sortable without duplicates // [B,C,D,a,c,e] -> Ord (used ASCII ordering) // [1,1,1,2,3,3] -> PartialOrd - sortable with duplicates // [A,B,B,c,c,c] -> PartialOrd ``` @steveklabnik You asked to be CCed on documentation bugs