summaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
Diffstat (limited to 'manual')
-rw-r--r--manual/src/tips-and-tricks/toggling-delta-features.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/src/tips-and-tricks/toggling-delta-features.md b/manual/src/tips-and-tricks/toggling-delta-features.md
index 8ec69df..5bca1d7 100644
--- a/manual/src/tips-and-tricks/toggling-delta-features.md
+++ b/manual/src/tips-and-tricks/toggling-delta-features.md
@@ -2,7 +2,7 @@ To toggle features such as `side-by-side` on and off, one solution is to use thi
```sh
delta-toggle() {
- eval "export DELTA_FEATURES=$(-delta-features-toggle $1 | tee /dev/stderr)"
+ eval "export DELTA_FEATURES='$(-delta-features-toggle $1 | tee /dev/stderr)'"
}
```
where `-delta-features-toggle` is this Python script: