From 988feee2f366df4e8221da4b990821445ddca7ad Mon Sep 17 00:00:00 2001 From: Brady Joslin Date: Tue, 16 Apr 2024 08:58:37 -0500 Subject: [PATCH] Correct mods example (#57) Usage of single quotes around '$(mods -f "Explain why CLIs are awesome")' causes the command to be treated as a string instead of being executed. Updated, now aligns with what's shown in the gif. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3812cba..e5eb04a 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ Use [`mods`](https://github.com/charmbracelet/mods) with `pop` to write an email > Use the `--preview` flag to preview the email and make changes before sending. ```bash -pop <<< '$(mods -f "Explain why CLIs are awesome")' \ +pop <<< "$(mods -f 'Explain why CLIs are awesome')" \ --subject "The command line is the best" \ --preview ```