From 5640eb1c784a19e18c54964e83d46d7106347c99 Mon Sep 17 00:00:00 2001 From: JestDotty Date: Mon, 6 Oct 2025 11:58:01 -0400 Subject: [PATCH] remove comments --- jest_rust/src/parser/for_loops.rs | 2 -- jest_rust/src/parser/muncher.rs | 3 --- 2 files changed, 5 deletions(-) diff --git a/jest_rust/src/parser/for_loops.rs b/jest_rust/src/parser/for_loops.rs index eb01bd6..52b0b19 100644 --- a/jest_rust/src/parser/for_loops.rs +++ b/jest_rust/src/parser/for_loops.rs @@ -1,8 +1,6 @@ use crate::{FORBIDDEN_WORDS, stats::Stats}; #[allow(dead_code)] -/// typically 5000ms -/// with trie this is 1600ms pub fn parse(stats: &mut Stats, text: &str) { for sentence in text .split('.') diff --git a/jest_rust/src/parser/muncher.rs b/jest_rust/src/parser/muncher.rs index 2323691..580819a 100644 --- a/jest_rust/src/parser/muncher.rs +++ b/jest_rust/src/parser/muncher.rs @@ -2,9 +2,6 @@ use crate::{FORBIDDEN_WORDS, stats::Stats}; #[allow(dead_code)] /// probably buggy. for example, are new lines sentences? what if the text has no last period? -/// 500ms is without forbidden words check, but... -/// 6000ms if adding forbidden words.. so not faster -/// with trie this is 2600ms pub fn parse(stats: &mut Stats, text: &str) { let mut capitalized = true; let mut whitespaced = false;