From 9d58c9a36aa745beb8f26771cb4ecd7cee46e4ea Mon Sep 17 00:00:00 2001 From: Don Turner Date: Wed, 3 Dec 2025 22:34:22 +0000 Subject: [PATCH] Fix: Correct heading for core modules This commit corrects a typo in the heading for the "Core modules" section in the documentation. --- docs/ModularizationLearningJourney.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ModularizationLearningJourney.md b/docs/ModularizationLearningJourney.md index 155b2ee0a..09e0100d2 100644 --- a/docs/ModularizationLearningJourney.md +++ b/docs/ModularizationLearningJourney.md @@ -77,7 +77,7 @@ This approach allows features to navigate to other features by using the target A feature's `api` module should not depend on another feature's `api` or `impl` module. A feature's `impl` should only depend on another featur's `api` module. Both submodules should only depend on the `core` modules that they require. -### `core:` modules +### Core modules These are common library modules containing auxiliary code and specific dependencies that need to be shared between other modules in the app. These modules can depend on other core modules, but they shouldn’t depend on feature nor app modules.