summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDenis Isidoro <denisidoro@users.noreply.github.com>2020-08-29 19:12:41 -0300
committerGitHub <noreply@github.com>2020-08-29 19:12:41 -0300
commit531a0a750870dce7e1e9b353bd84ba5210202760 (patch)
tree1c941284476192bf717a5afd10a16c561e8405b2 /README.md
parente61e588b82a62cfb7fea9ffea4f99d91a8600abe (diff)
Use comment instead of snippet as example
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 8450db3..764e2a4 100644
--- a/README.md
+++ b/README.md
@@ -93,12 +93,12 @@ Let's say you want to write a bash script that, among other things, asks the use
If you already have the [cheatsheet above](#cheatsheet-syntax), then you write the following in your script:
```sh
-navi --query "git checkout" --best-match
+navi --query "change branch" --best-match
```
If you want to set the `<branch>` beforehand in your script, you could then write:
```sh
-branch="master" navi --query "git checkout" --best-match
+branch="master" navi --query "change branch" --best-match
```
More info