From d1fef8f74a1b5865e181189ac32fc35a46a5cb0c Mon Sep 17 00:00:00 2001 From: Royce Williams Date: Wed, 19 Jul 2017 06:08:37 -0800 Subject: [PATCH] tighten to under 80 columns, and minor grammar --- src/terminal.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/terminal.c b/src/terminal.c index 0b322a0a6..512b51014 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -42,10 +42,10 @@ void welcome_screen (hashcat_ctx_t *hashcat_ctx, const char *version_tag) if (user_options->workload_profile_chgd == false) { - event_log_advice (hashcat_ctx, "Benchmarking uses hand optimized kernel code by default."); + event_log_advice (hashcat_ctx, "Benchmarking uses hand-optimized kernel code by default."); event_log_advice (hashcat_ctx, "You can use it in your cracking session by setting the -O option."); - event_log_advice (hashcat_ctx, "Note that using optimized kernel code limits the maximum supported password length."); - event_log_advice (hashcat_ctx, "To disable the optimized kernel code in benchmark mode use the -w option."); + event_log_advice (hashcat_ctx, "Note: Using optimized kernel code limits the maximum supported password length."); + event_log_advice (hashcat_ctx, "To disable the optimized kernel code in benchmark mode, use the -w option."); event_log_advice (hashcat_ctx, NULL); } }