Remove mention of old .sort syntax (~ ftw)
This commit is contained in:
parent
e6e58047f6
commit
735feeff1a
3 changed files with 3 additions and 3 deletions
|
@ -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).
|
Iterate over count empty items. The items in this iterator have no fields (i.e. are empty).
|
||||||
|
|
||||||
### 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);`
|
#### .field -- e.g. `iterable~(.filename);`
|
||||||
|
|
||||||
|
|
|
@ -164,7 +164,7 @@
|
||||||
//! Iterate over count empty items. The items in this iterator have no fields (i.e. are empty).
|
//! Iterate over count empty items. The items in this iterator have no fields (i.e. are empty).
|
||||||
//!
|
//!
|
||||||
//! ## 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);`
|
//! ### .field -- e.g. `iterable~(.filename);`
|
||||||
//!
|
//!
|
||||||
|
|
|
@ -98,7 +98,7 @@ Operations to reduce the items in an iterable: iterable.(filter)
|
||||||
|
|
||||||
pub const SORTERS: &str =
|
pub const SORTERS: &str =
|
||||||
"SORTERS (?sorters)
|
"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)
|
.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.
|
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.
|
||||||
|
|
Loading…
Reference in a new issue