From 334aa3d7f84f66bd96a94dda499d5300f3333b15 Mon Sep 17 00:00:00 2001 From: Oli Scherer Date: Fri, 8 Jul 2022 15:14:25 +0000 Subject: [PATCH] Add FIXME --- ui_test/src/comments.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ui_test/src/comments.rs b/ui_test/src/comments.rs index 6f2d8aa086d9..080a887d9e74 100644 --- a/ui_test/src/comments.rs +++ b/ui_test/src/comments.rs @@ -193,6 +193,7 @@ impl Comments { let next = args .next() .expect("the `position` above guarantees that there is at least one char"); + // FIXME: this replicates the existing flexibility in our syntax. Consider requiring the colon. let args = match next { ':' | ' ' => args.as_str(), _ => bail!("expected space or `:`, got `{next}`"),