From 808ea4b9892f9358cf36a51cdb59eeb302c54b76 Mon Sep 17 00:00:00 2001 From: David Cermak Date: Thu, 21 Aug 2025 10:04:56 +0200 Subject: [PATCH] fix(docs): Update unclear sdkconfig.rename example --- docs/en/api-guides/kconfig/configuration_structure.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/en/api-guides/kconfig/configuration_structure.rst b/docs/en/api-guides/kconfig/configuration_structure.rst index 5c95a2833c..ddc1700500 100644 --- a/docs/en/api-guides/kconfig/configuration_structure.rst +++ b/docs/en/api-guides/kconfig/configuration_structure.rst @@ -87,17 +87,17 @@ Example: .. code-block:: kconfig - # new name old name - CONFIG_HYPEDRIVE CONFIG_WARP_DRIVE - CONFIG_DISABLE_WAPRT_ !CONFIG_ENABLE_WARP_DRIVE + # old name new name + CONFIG_WARP_DRIVE CONFIG_HYPERDRIVE + CONFIG_ENABLE_WARP_DRIVE !CONFIG_DISABLE_HYPERDRIVE ``sdkconfig``: .. code-block:: kconfig (...) - CONFIG_HYPEDRIVE=y - CONFIG_DISABLE_HYPEDRIVE=n + CONFIG_HYPERDRIVE=y + CONFIG_DISABLE_HYPERDRIVE=n (...) # Deprecated options for backward compatibility CONFIG_WARP_DRIVE=y