Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

doc: don't use deprecated "---help---" markers in target docs

I'm not convinced the script makes useful automaed help lines anyway,
but since we're trying to deprecate the use of "---help---" in Kconfig
files, let's fix the doc example code too.

See commit a7f7f6248d97 ("treewide: replace '---help---' in Kconfig
files with 'help'")

Cc: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

+2 -2
+2 -2
Documentation/target/tcm_mod_builder.py
··· 568 568 buf += " tristate \"" + fabric_mod_name.upper() + " fabric module\"\n" 569 569 buf += " depends on TARGET_CORE && CONFIGFS_FS\n" 570 570 buf += " default n\n" 571 - buf += " ---help---\n" 572 - buf += " Say Y here to enable the " + fabric_mod_name.upper() + " fabric module\n" 571 + buf += " help\n" 572 + buf += " Say Y here to enable the " + fabric_mod_name.upper() + " fabric module\n" 573 573 574 574 ret = p.write(buf) 575 575 if ret: