From 507459b4ee9026231b7dee798a661935bf204f7c Mon Sep 17 00:00:00 2001 From: Olivier Date: Mon, 28 Mar 2022 22:26:20 +0100 Subject: [PATCH] Fix comment association --- quickpeep/src/bin/qp-seedcoll-sort.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/quickpeep/src/bin/qp-seedcoll-sort.rs b/quickpeep/src/bin/qp-seedcoll-sort.rs index 5780c45..b569a23 100644 --- a/quickpeep/src/bin/qp-seedcoll-sort.rs +++ b/quickpeep/src/bin/qp-seedcoll-sort.rs @@ -10,12 +10,11 @@ use tokio::io; use tokio::io::{AsyncBufReadExt, BufReader}; pub const SORTING_OUTCOMES: [&str; 5] = [ - // Included - "y", // Not included (generic) - "n", // Duplicates an existing entry - "dupe", // Spam entry - "spam", // Invalid format for some reason (e.g. pattern or URL invalid) - "inv", + "y", // Included + "n", // Not included (generic) + "dupe", // Duplicates an existing entry + "spam", // Spam entry + "inv", // Invalid format for some reason (e.g. pattern or URL invalid) ]; #[tokio::main]