From bf33435cb5f34569cab344aacaabfe1d3986c359 Mon Sep 17 00:00:00 2001 From: Don Turner Date: Wed, 3 Dec 2025 22:47:12 +0000 Subject: [PATCH] Fix feature module names in documentation --- docs/ModularizationLearningJourney.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/ModularizationLearningJourney.md b/docs/ModularizationLearningJourney.md index 3485a0669..179ec1bec 100644 --- a/docs/ModularizationLearningJourney.md +++ b/docs/ModularizationLearningJourney.md @@ -108,11 +108,11 @@ For example, `sync`, `benchmark` and `test` modules, as well as `app-nia-catalog - feature1:api,
- feature2:api
+ feature:1:api,
+ feature:2:api
... - Navigation keys and functions that other features can use to navigate to this feature.
+ Navigation keys and functions that other features can use to navigate to this feature.

For example: The :topic:api module exposes a Navigator.navigateToTopic function that the :interests:impl module uses to navigate from the InterestsScreen to the TopicScreen when a topic is clicked. @@ -121,15 +121,15 @@ For example, `sync`, `benchmark` and `test` modules, as well as `app-nia-catalog - feature1:impl,
- feature2:impl
+ feature:1:impl,
+ feature:2:impl
... Functionality associated with a specific feature or user journey. Typically contains UI components and ViewModels which read data from other modules.
Examples include:
TopicScreen