summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2023-08-16 07:32:32 -0700
committerKaz Kylheku <kaz@kylheku.com>2023-08-16 07:32:32 -0700
commitbeddc938a88b8b772182bb934fdd1cc9607cd34e (patch)
tree2550d6b502da1edcee1006c6e4101e18682c3f87
parent3e8d788a97a0f27c60670c6b8fa73d9548a9a8ef (diff)
downloadtxr-beddc938a88b8b772182bb934fdd1cc9607cd34e.tar.gz
txr-beddc938a88b8b772182bb934fdd1cc9607cd34e.tar.bz2
txr-beddc938a88b8b772182bb934fdd1cc9607cd34e.zip
doc: typo in *stdnull* example.
* txr.1: Fix misspelled *stderr* in example demonstrating binding of *stderr* to *stdnull*.
-rw-r--r--txr.12
1 files changed, 1 insertions, 1 deletions
diff --git a/txr.1 b/txr.1
index 53e81e1c..1f17f673 100644
--- a/txr.1
+++ b/txr.1
@@ -60161,7 +60161,7 @@ execution of external utilities.
.verb
;; redirect output of ls *.txt command to /dev/null
- (let ((*stderr *stdnull*))
+ (let ((*stderr* *stdnull*))
(sh "ls *.txt"))
.brev