Skip to content

Commit

Permalink
fix formatting error
Browse files Browse the repository at this point in the history
  • Loading branch information
guuzaa committed Sep 8, 2024
1 parent 995d69e commit 26f7adf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
use clap::{CommandFactory, Parser};
use std::fs::File;
use std::io::{self, BufReader};
use clap::{Parser, CommandFactory};

mod input_processor;
use input_processor::{process_input, CountOptions};

#[derive(Parser)]
#[command(author, version, about = "A simple word count program by Rust and Cursor")]
#[command(
author,
version,
about = "A simple word count program by Rust and Cursor"
)]
struct Cli {
/// Show line count
#[arg(short = 'l', long)]
Expand Down

0 comments on commit 26f7adf

Please sign in to comment.