aboutsummaryrefslogtreecommitdiff
path: root/src/utils/sort.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/sort.rs')
-rw-r--r--src/utils/sort.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/utils/sort.rs b/src/utils/sort.rs
deleted file mode 100644
index 131fa55..0000000
--- a/src/utils/sort.rs
+++ /dev/null
@@ -1,6 +0,0 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
-// SPDX-License-Identifier: GPL-3.0-only
-
-pub fn sort_vec_alphabetically(vec: &mut Vec<&str>) {
- vec.sort_by(|a, b| a.to_lowercase().cmp(&b.to_lowercase()));
-}