Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/devmanual:master commit in: eclass-writing/
Date: Sat, 30 Apr 2022 17:01:21
Message-Id: 1651337924.b99e3d57965f00401a37041564a029d96ec788b2.ulm@gentoo
1 commit: b99e3d57965f00401a37041564a029d96ec788b2
2 Author: Thomas Bracht Laumann Jespersen <t <AT> laumann <DOT> xyz>
3 AuthorDate: Sat Apr 30 11:32:28 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 30 16:58:44 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=b99e3d57
7
8 eclass-writing: minor edits to jmake example
9
10 Double space after full stop. Add full stop to sentence.
11
12 Signed-off-by: Thomas Bracht Laumann Jespersen <t <AT> laumann.xyz>
13 [Wrap paragraph at column 72.]
14 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
15
16 eclass-writing/text.xml | 6 +++---
17 1 file changed, 3 insertions(+), 3 deletions(-)
18
19 diff --git a/eclass-writing/text.xml b/eclass-writing/text.xml
20 index 8c83dc2..9f5fbdf 100644
21 --- a/eclass-writing/text.xml
22 +++ b/eclass-writing/text.xml
23 @@ -801,7 +801,7 @@ functions.
24 # @DESCRIPTION:
25 # Demonstrates EXPORT_FUNCTIONS and defines simple wrappers for the
26 # (hypothetical) jmake build system along with default src_configure and
27 -# src_compile phase functions
28 +# src_compile phase functions.
29
30 case ${EAPI} in
31 7|8) ;;
32 @@ -825,8 +825,8 @@ jmake-configure() {
33 # @FUNCTION: jmake_src_configure
34 # @USAGE: [additional-args]
35 # @DESCRIPTION:
36 -# Calls jmake-configure() to configure a jmake project. Passes all arguments
37 -# through to the appropriate "jmake configure" command.
38 +# Calls jmake-configure() to configure a jmake project. Passes all
39 +# arguments through to the appropriate "jmake configure" command.
40 jmake_src_configure() {
41 jmake-configure "$@" || die "configure failed"
42 }