commit: b99e3d57965f00401a37041564a029d96ec788b2
Author: Thomas Bracht Laumann Jespersen <t <AT> laumann <DOT> xyz>
AuthorDate: Sat Apr 30 11:32:28 2022 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Apr 30 16:58:44 2022 +0000
URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=b99e3d57
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 <AT> laumann.xyz>
[Wrap paragraph at column 72.]
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
eclass-writing/text.xml | 6 +++---
1 file 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"
}