commit: bdddd06fff6aad611764c97f192e4d8bdfff6723
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 17 04:29:40 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Apr 17 04:30:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdddd06f
optfeature.eclass: fix indentations in code examples
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
eclass/optfeature.eclass | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/eclass/optfeature.eclass b/eclass/optfeature.eclass
index 06776da922d..e6ab6b7f52d 100644
--- a/eclass/optfeature.eclass
+++ b/eclass/optfeature.eclass
@@ -53,11 +53,11 @@ _OPTFEATURE_DOHEADER=true
# displayed in case dev-db/a or dev-db/b are not installed.
# @CODE
# pkg_postinst() {
-# optfeature "foo support" app-misc/foo
-# optfeature "bar support" app-misc/bar
-# optfeature_header "Install optional database backends:"
-# optfeature "a DB backend" dev-db/a
-# optfeature "b DB backend" dev-db/b
+# optfeature "foo support" app-misc/foo
+# optfeature "bar support" app-misc/bar
+# optfeature_header "Install optional database backends:"
+# optfeature "a DB backend" dev-db/a
+# optfeature "b DB backend" dev-db/b
# }
# @CODE
optfeature_header() {
@@ -77,9 +77,9 @@ optfeature_header() {
# and either both app-misc/a and app-misc/b or app-misc/c for alphabet support.
# @CODE
# pkg_postinst() {
-# optfeature "foo support" app-misc/foo
-# optfeature "bar support" app-misc/bar app-misc/baz[bar]
-# optfeature "alphabet support" "app-misc/a app-misc/b" app-misc/c
+# optfeature "foo support" app-misc/foo
+# optfeature "bar support" app-misc/bar app-misc/baz[bar]
+# optfeature "alphabet support" "app-misc/a app-misc/b" app-misc/c
# }
# @CODE
optfeature() {