From 21a62f9125351e29f0ede6b3355ae620bd26bf71 Mon Sep 17 00:00:00 2001 From: BuyMyMojo Date: Sat, 5 Mar 2022 16:27:30 +1100 Subject: [PATCH] Fix spelling error in 'brute force' --- README.md | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 69bbf60..13fc7e3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Rust 3x+1 -Simple tool to bruteforce 3x+1 for a second loop. Only takes positive numbers. +Simple tool to brute force 3x+1 for a second loop. Only takes positive numbers. ## Usage diff --git a/src/main.rs b/src/main.rs index ceaa00a..c972776 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,7 +4,7 @@ use tracing::{Level, instrument, event}; use tracing_subscriber; use clap::Parser; -/// Simple tool to bruteforce 3x+1 for a second loop. Only takes positive numbers +/// Simple tool to brute force 3x+1 for a second loop. Only takes positive numbers #[derive(Parser, Debug)] #[clap(author, version, about, long_about = None)] struct Args {