diff options
author | Daniel Llorens <lloda@sarc.name> | 2020-01-24 12:28:29 +0100 |
---|---|---|
committer | Daniel Llorens <lloda@sarc.name> | 2020-01-24 12:28:29 +0100 |
commit | 0fee413ff81d303a16b1f93851ad1c9e04d01590 (patch) | |
tree | 1b0dc939ab9bc7398ef195d680a67f1610590f95 | |
parent | ddcab06f20525d975503d8d9611e02021fb0dff1 (diff) | |
download | guile-0fee413ff81d303a16b1f93851ad1c9e04d01590.tar.gz |
Clarify open-input-pipe example in doc
-rw-r--r-- | doc/ref/posix.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/posix.texi b/doc/ref/posix.texi index b1b51d0d7..2c85f803a 100644 --- a/doc/ref/posix.texi +++ b/doc/ref/posix.texi @@ -2322,7 +2322,7 @@ Equivalent to @code{open-pipe} with mode @code{OPEN_READ}. @lisp (let* ((port (open-input-pipe "date --utc")) - (str (read-line port))) + (str (read-line port))) ; from (ice-9 rdelim) (close-pipe port) str) @result{} "Mon Mar 11 20:10:44 UTC 2002" |