From 5c74111efa6c90d38ae9319f848a93e67366a884 Mon Sep 17 00:00:00 2001 From: Johanna Date: Mon, 27 Jun 2022 22:05:41 +0200 Subject: [PATCH] Scintillators are cool too --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b367dcb..f00373b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -32,7 +32,7 @@ fn main() -> Result<(), String> { //Instead of building a detector out of scintillators and photo multiplier tubes, //we just allocate some memory on this here computer. - //Less exciting, but much cheaper + //Less exciting, much less accurate and sensitive, but much cheaper let mut detector: Vec = vec![0; size]; if verbose { print!("Initializing detector RAM with random values...");