commit: bb1891eac5da63da15967397a1326cb680b5b0c6
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 22 06:16:06 2021 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Mar 30 06:53:23 2021 +0000
URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=bb1891ea
eclass-writing: mention that prefixing with the eclass name is "namespacing"
Signed-off-by: Sam James <sam <AT> gentoo.org>
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
eclass-writing/text.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/eclass-writing/text.xml b/eclass-writing/text.xml
index ccebfb6..6ac9f0d 100644
--- a/eclass-writing/text.xml
+++ b/eclass-writing/text.xml
@@ -658,10 +658,10 @@ domacosapp() {
<p>
An eclass may provide default implementations for any of the ebuild phase
-functions (<c>src_unpack</c>, <c>pkg_postinst</c> etc). This can be done
either as a
+functions (<c>src_unpack</c>, <c>pkg_postinst</c>, etc). This can be done
either as a
simple function definition (which is not multiple eclass friendly) or using
<c>EXPORT_FUNCTIONS</c>. Functions given to <c>EXPORT_FUNCTIONS</c> are
implemented
-as normal, but have their name prefixed with <c>${ECLASS}_</c>.
+as normal, but have their name prefixed ("namespaced") with <c>${ECLASS}_</c>.
</p>
<important>