From 5077aafc296334b6f14ade758c523724790821fb Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Mon, 1 Mar 2021 16:08:09 -0500 Subject: [PATCH] fix wording Signed-off-by: Sebastian Malton --- src/renderer/item.store.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/renderer/item.store.ts b/src/renderer/item.store.ts index 198491b720..3438ecff49 100644 --- a/src/renderer/item.store.ts +++ b/src/renderer/item.store.ts @@ -43,8 +43,7 @@ export abstract class ItemStore { * Return `items` sorted by the given ordering functions. If two elements of * `items` are sorted to the same "index" then the next sorting function is used * to determine where to place them relative to each other. Once the `sorting` - * functions have bee all exausted then the order is the order they were initially - * in (ie a stable sort). + * functions have been all exausted then the order is unchanged (ie a stable sort). * @param items the items to be sorted (default: the current items in this store) * @param sorting list of functions to determine sort order (default: sorting by name) * @param order whether to sort from least to greatest (`"asc"` (default)) or vice-versa (`"desc"`)