kconfig: doc: fix a typo in the note about 'imply'
authorMasahiro Yamada <masahiroy@kernel.org>
Mon, 3 Jun 2024 16:19:02 +0000 (01:19 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Thu, 6 Jun 2024 11:03:16 +0000 (20:03 +0900)
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>
Documentation/kbuild/kconfig-language.rst

index 555c2f8..86be5b8 100644 (file)
@@ -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()