diff options
author | 2022-04-30 13:32:28 +0200 | |
---|---|---|
committer | 2022-04-30 18:58:44 +0200 | |
commit | b99e3d57965f00401a37041564a029d96ec788b2 (patch) | |
tree | e6be78b5787ee2799a24e6470b8b75c11f32202a /eclass-writing | |
parent | eclass-writing: Sentence ends should be followed by two spaces (diff) | |
download | devmanual-b99e3d57965f00401a37041564a029d96ec788b2.tar.gz devmanual-b99e3d57965f00401a37041564a029d96ec788b2.tar.bz2 devmanual-b99e3d57965f00401a37041564a029d96ec788b2.zip |
eclass-writing: minor edits to jmake example
Double space after full stop. Add full stop to sentence.
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
[Wrap paragraph at column 72.]
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass-writing')
-rw-r--r-- | eclass-writing/text.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass-writing/text.xml b/eclass-writing/text.xml index 8c83dc2..9f5fbdf 100644 --- a/eclass-writing/text.xml +++ b/eclass-writing/text.xml @@ -801,7 +801,7 @@ functions. # @DESCRIPTION: # Demonstrates EXPORT_FUNCTIONS and defines simple wrappers for the # (hypothetical) jmake build system along with default src_configure and -# src_compile phase functions +# src_compile phase functions. case ${EAPI} in 7|8) ;; @@ -825,8 +825,8 @@ jmake-configure() { # @FUNCTION: jmake_src_configure # @USAGE: [additional-args] # @DESCRIPTION: -# Calls jmake-configure() to configure a jmake project. Passes all arguments -# through to the appropriate "jmake configure" command. +# Calls jmake-configure() to configure a jmake project. Passes all +# arguments through to the appropriate "jmake configure" command. jmake_src_configure() { jmake-configure "$@" || die "configure failed" } |