From 3aa39502c9cc3747f5ab309341e936fe34501f32 Mon Sep 17 00:00:00 2001 From: gilardh Date: Sat, 24 Oct 2020 22:49:25 +0200 Subject: [PATCH] Modify entropy information --- cli/src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index d6fd44e..bc7422b 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -115,7 +115,8 @@ fn main() { // If the user hasn't specified any, read from the stdin if matches.value_of("entropy").is_none() { // Read from stdin - println!("Provide additional entropy for generating random numbers. Type in a string of random characters, press [ENTER] when done"); + println!("Provide additional entropy for generating random numbers. +Type in a string of random characters, press [ENTER] when done."); let mut buffer = String::new(); let stdin = io::stdin(); stdin.lock().read_line(&mut buffer).unwrap();