Remove mention of old .sort syntax (~ ftw)

This commit is contained in:
NGnius (Graham) 2023-07-10 18:23:37 -04:00
parent e6e58047f6
commit 735feeff1a
3 changed files with 3 additions and 3 deletions

View file

@ -166,7 +166,7 @@ Empty iterator containing zero items. Useful for deleting items using replacemen
Iterate over count empty items. The items in this iterator have no fields (i.e. are empty).
### Sorters
Operations to sort the items in an iterable: `iterable~(sorter)` OR `iterable.sort(sorter)`.
Operations to sort the items in an iterable: `iterable~(sorter)`.
#### .field -- e.g. `iterable~(.filename);`

View file

@ -164,7 +164,7 @@
//! Iterate over count empty items. The items in this iterator have no fields (i.e. are empty).
//!
//! ## Sorters
//! Operations to sort the items in an iterable: `iterable~(sorter)` OR `iterable.sort(sorter)`.
//! Operations to sort the items in an iterable: `iterable~(sorter)`.
//!
//! ### .field -- e.g. `iterable~(.filename);`
//!

View file

@ -98,7 +98,7 @@ Operations to reduce the items in an iterable: iterable.(filter)
pub const SORTERS: &str =
"SORTERS (?sorters)
Operations to sort the items in an iterable: iterable~(sorter) OR iterable.sort(sorter)
Operations to sort the items in an iterable: iterable~(sorter)
.field -- e.g. iterable~(.filename)
Sort by an Item field. Valid field names change depending on what information is available when the Item is populated, but usually title, artist, album, genre, track, filename are valid fields. Items with a missing/incomparable fields will be sorted to the end.