summaryrefslogtreecommitdiffstats
path: root/src/app
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-05-26 00:19:28 -0400
committerGitHub <noreply@github.com>2023-05-26 00:19:28 -0400
commit6b9663a2c20b6483c1f4b1b9cc964719cfe43a0e (patch)
treeb8990f33067d077e5622f7c4e03e341f6f6e876a /src/app
parent69318465ae82281c40b68d3478232e0119dba414 (diff)
other: clean up some fixmes (#1171)
Diffstat (limited to 'src/app')
-rw-r--r--src/app/query.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app/query.rs b/src/app/query.rs
index eb2d281f..17cc1c44 100644
--- a/src/app/query.rs
+++ b/src/app/query.rs
@@ -338,7 +338,8 @@ pub fn parse_query(
let mut condition: Option<QueryComparison> = None;
let mut value: Option<f64> = None;
- // TODO: Jeez, what the heck did I write here... add some tests and clean this up, please.
+ // TODO: Jeez, what the heck did I write here... add some tests and clean this up in the
+ // future.
if content == "=" {
condition = Some(QueryComparison::Equal);
if let Some(queue_next) = query.pop_front() {