diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2024-06-03 18:19:02 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-06-06 13:03:16 +0200 |
commit | bf83266a1eef8251e2f126dba635039de069104a (patch) | |
tree | 64fd37174465cb671404c2af1f8485db5aa361f3 | |
parent | kconfig: gconf: give a proper initial state to the Save button (diff) | |
download | linux-bf83266a1eef8251e2f126dba635039de069104a.tar.xz linux-bf83266a1eef8251e2f126dba635039de069104a.zip |
kconfig: doc: fix a typo in the note about 'imply'
This sentence does not make sense due to a typo. Fix it.
Fixes: def2fbffe62c ("kconfig: allow symbols implied by y to become m")
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
-rw-r--r-- | Documentation/kbuild/kconfig-language.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/kbuild/kconfig-language.rst b/Documentation/kbuild/kconfig-language.rst index 555c2f839969..86be5b857cc4 100644 --- a/Documentation/kbuild/kconfig-language.rst +++ b/Documentation/kbuild/kconfig-language.rst @@ -184,7 +184,7 @@ applicable everywhere (see syntax). ability to hook into a secondary subsystem while allowing the user to configure that subsystem out without also having to unset these drivers. - Note: If the combination of FOO=y and BAR=m causes a link error, + Note: If the combination of FOO=y and BAZ=m causes a link error, you can guard the function call with IS_REACHABLE():: foo_init() |