commit: 113722f502c51e2a8320a39d34f76621064c6c19
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 5 11:31:51 2020 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Thu Nov 5 11:49:06 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=113722f5
lua.eclass: Fix eclassdoc indentation
Must use spaces instead of tabs in code examples in order for them to be
properly indented in generated man pages etc.
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
eclass/lua.eclass | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/eclass/lua.eclass b/eclass/lua.eclass
index 8ade9c0f079..46d9e848c87 100644
--- a/eclass/lua.eclass
+++ b/eclass/lua.eclass
@@ -38,15 +38,15 @@
# REQUIRED_USE="${LUA_REQUIRED_USE}"
# DEPEND="${LUA_DEPS}"
# RDEPEND="${DEPEND}
-# dev-lua/foo[${LUA_USEDEP}]"
+# dev-lua/foo[${LUA_USEDEP}]"
# BDEPEND="virtual/pkgconfig"
#
# lua_src_install() {
-# emake LUA_VERSION="$(lua_get_version)" install
+# emake LUA_VERSION="$(lua_get_version)" install
# }
#
# src_install() {
-# lua_foreach_impl lua_src_install
+# lua_foreach_impl lua_src_install
# }
# @CODE