Fix spelling error in 'brute force'

This commit is contained in:
BuyMyMojo 2022-03-05 16:27:30 +11:00
parent ae8a44553d
commit 21a62f9125
No known key found for this signature in database
GPG key ID: FFD9FDB3FD0A026B
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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 {