commit: 6497565be0b7baebca966388cb8c1a93233e24e5 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Sat Sep 3 11:35:24 2022 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Mon Sep 12 19:14:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6497565b
myspell-r2.eclass: improve code examples format Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> eclass/myspell-r2.eclass | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/eclass/myspell-r2.eclass b/eclass/myspell-r2.eclass index cce75ae4d6d2..965327ac1b58 100644 --- a/eclass/myspell-r2.eclass +++ b/eclass/myspell-r2.eclass @@ -16,19 +16,25 @@ # @DEFAULT_UNSET # @DESCRIPTION: # Array variable containing list of all dictionary files. +# @CODE # MYSPELL_DICT=( "file.dic" "dir/file2.aff" ) +# @CODE # @ECLASS_VARIABLE: MYSPELL_HYPH # @DEFAULT_UNSET # @DESCRIPTION: # Array variable containing list of all hyphenation files. +# @CODE # MYSPELL_HYPH=( "file.dic" "dir/file2.dic" ) +# @CODE # @ECLASS_VARIABLE: MYSPELL_THES # @DEFAULT_UNSET # @DESCRIPTION: # Array variable containing list of all thesarus files. +# @CODE # MYSPELL_THES=( "file.dat" "dir/file2.idx" ) +# @CODE case ${EAPI} in 7|8)