diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-07-02 21:25:55 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-07-02 21:25:55 +0200 |
commit | a311d67451eb4734684f314f1b56021da86459a0 (patch) | |
tree | 9977779be76fec187de51bcfaf6588f37c7e58f7 /src | |
parent | 0f5f0d65a05ff8f878122f3a360ce814b2499b8d (diff) | |
download | notes-a311d67451eb4734684f314f1b56021da86459a0.tar.gz notes-a311d67451eb4734684f314f1b56021da86459a0.zip |
fish: fix error in product expansion
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/fish.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/fish.md b/src/tools/fish.md index 2cc763e..fb795dd 100644 --- a/src/tools/fish.md +++ b/src/tools/fish.md @@ -50,7 +50,7 @@ echo file.{h,cc} # file.h file.cc echo {a,b}{1,2} -# a1 b1 b2 +# a1 b1 a2 b2 ``` ### Special Variables (Lists) |