summaryrefslogtreecommitdiffstats
path: root/src/app/query.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/query.rs')
-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() {