me
/
guix
Archived
1
0
Fork 0

doc: More uses of @lisp instead of @example.

* doc/guix.texi (G-Expressions): Use @lisp for 'let-system' example.
* doc/contributing.texi (Synopses and Descriptions): Use @lisp for
second example.
master
Ludovic Courtès 2020-10-19 22:46:35 +02:00
parent ebe6e03949
commit 93c251818d
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
2 changed files with 4 additions and 4 deletions

View File

@ -605,11 +605,11 @@ to make recommendations or instructions visible to them by inserting
special comments like this (@pxref{xgettext Invocation,,, gettext, GNU
Gettext}):
@example
@lisp
;; TRANSLATORS: "X11 resize-and-rotate" should not be translated.
(description "ARandR is designed to provide a simple visual front end
for the X11 resize-and-rotate (RandR) extension. @dots{}")
@end example
@end lisp
@node Snippets versus Phases
@subsection Snippets versus Phases

View File

@ -9396,7 +9396,7 @@ cross-compiling.
@code{let-system} is useful in the occasional case where the object
spliced into the gexp depends on the target system, as in this example:
@example
@lisp
#~(system*
#+(let-system system
(cond ((string-prefix? "armhf-" system)
@ -9406,7 +9406,7 @@ spliced into the gexp depends on the target system, as in this example:
(else
(error "dunno!"))))
"-net" "user" #$image)
@end example
@end lisp
@end deffn
@deffn {Scheme Syntax} with-parameters ((@var{parameter} @var{value}) @dots{}) @var{exp}