From 19dd607409c4868cbc9b732cada7bad98c7e3558 Mon Sep 17 00:00:00 2001 From: Lab Rat Date: Sat, 11 Nov 2023 23:22:29 +0530 Subject: [PATCH] docs(usage): updated cli references --- .idea/workspace.xml | 6 ++++-- Cargo.lock | 2 +- README.md | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 50265f6..ac3c8c7 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -7,7 +7,9 @@ - + + + diff --git a/Cargo.lock b/Cargo.lock index 34ecba1..65c1d36 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -110,7 +110,7 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "cpast" -version = "0.2.7" +version = "0.2.9" dependencies = [ "clap", "rand", diff --git a/README.md b/README.md index 4a657ee..187d611 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ cargo install cpast Here's a simple example of how to use `cpast`: ```bash -cpast -s correct.cpp -t incorrect.cpp -g "(N) (?:N){\1}" --iterations 100 +cpast -c correct.cpp -t incorrect.cpp -g "(N) (?:N){\1}" --iterations 100 ``` - `correct.cpp` should contain the correct code.