1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

Fix scheme-scripts markup.

* doc/ref/scheme-scripts.texi (Scripting Examples): Fix $@ rendering in
  texinfo.
This commit is contained in:
Andy Wingo 2017-03-01 21:44:53 +01:00
parent 8ed8b375a7
commit c2ab4a3b22

View file

@ -455,7 +455,7 @@ take care to quote the command arguments correctly:
@example @example
#!/usr/bin/env sh #!/usr/bin/env sh
exec guile -l fact -e '(@@ (fac) main)' -s "$0" "$@" exec guile -l fact -e '(@@ (fac) main)' -s "$0" "$@@"
!# !#
(define-module (fac) (define-module (fac)
#:export (main)) #:export (main))