From 8b906b954789acb42b0b1b2a43e8b679c93821b3 Mon Sep 17 00:00:00 2001 From: Michael Debertol Date: Wed, 21 Apr 2021 18:00:01 +0200 Subject: [PATCH] remove feature use stabilized in 1.51 --- src/uu/sort/src/sort.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/sort/src/sort.rs b/src/uu/sort/src/sort.rs index 7090a98ed..7d9808c1b 100644 --- a/src/uu/sort/src/sort.rs +++ b/src/uu/sort/src/sort.rs @@ -424,7 +424,7 @@ impl KeyPosition { | SortMode::GeneralNumeric | SortMode::Month => SortMode::Default, // Only SortMode::Default and SortMode::Version work with dictionary_order and ignore_non_printing - m @ (SortMode::Default | SortMode::Version) => m, + m @ SortMode::Default | m @ SortMode::Version => m, } } _ => {}