Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
akoken committed Oct 26, 2024
1 parent a4e7734 commit a58ec2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@ Minigrep is a very basic command-line utility that performs text searches in fil
To install Minigrep, you can download binaries or follow these steps:

1. Clone the repository:

```bash
git clone https://github.com/akoken/minigrep.git
cd minigrep
```

2. Build the project:

```bash
cargo build --release
```
Expand Down
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ mod tests {
use super::*;

fn strip_color_codes(s: &str) -> String {
// Use regex or replace ANSI codes directly if needed
s.replace("\x1b[31m", "").replace("\x1b[0m", "")
}

Expand Down

0 comments on commit a58ec2c

Please sign in to comment.