From 74493c9c233a57044ca819b8e1264a61ffbbf0bb Mon Sep 17 00:00:00 2001 From: Nick Zakharov Date: Fri, 11 Oct 2024 10:37:24 +0200 Subject: [PATCH] fix(docs): use CWC_PROMPT in example instead of PROMPT (#9) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 47ec865..629a4ad 100644 --- a/README.md +++ b/README.md @@ -137,8 +137,8 @@ The result output from cwc can also be piped to other commands as well. This exa ```sh # generate a commit message for current changes -PROMPT="please write me a conventional commit for these changes" -git diff HEAD | cwc $PROMPT | git commit -e --file - +CWC_PROMPT="please write me a conventional commit for these changes" +git diff HEAD | cwc $CWC_PROMPT | git commit -e --file - ``` ## Configuration