From 1bb0d96d7b33e97d296f72be975baabcc7086ddc Mon Sep 17 00:00:00 2001 From: JHawk0224 Date: Wed, 18 Sep 2024 22:22:45 -0400 Subject: [PATCH] Fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 05d9658..67cd3c8 100644 --- a/README.md +++ b/README.md @@ -43,9 +43,9 @@ chmod +x /usr/local/bin/stub To run the stubber, use the following command: ```bash -stub [--copy] [--rm] [ ...]" +stub [--copy] [--rm] [ ...] ``` If the `--copy` argument is included, the stubbed files will be written to a copy, where all the new files will have `_stubbed` added to the end. If this argument is omitted, the files will be edited in place. -If the `--rm` argument is included, the `SOLN` and `STUBWITH` lines will be removed, but the code in between won't actually. It doesn't actually stub, but rather just remove the stub comments. If it's not included, the stubber works as expected. +If the `--rm` argument is included, the `SOLN` and `STUBWITH` lines will be removed, but the code in between won't actually be removed. It doesn't actually stub, but rather just remove the stub comments. If it's not included, the stubber works as expected.