Skip to content

Commit a1516b2

Browse files
committed
Fix feature module names in documentation
1 parent c4e3188 commit a1516b2

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

docs/ModularizationLearningJourney.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ For example, `sync`, `benchmark` and `test` modules, as well as `app-nia-catalog
108108
</td>
109109
</tr>
110110
<tr>
111-
<td><code>feature1:api,</code><br>
112-
<code>feature2:api</code><br>
111+
<td><code>feature:1:api,</code><br>
112+
<code>feature:2:api</code><br>
113113
...
114114
</td>
115-
<td>Navigation keys and functions that other features can use to navigate to this feature.<br>
115+
<td>Navigation keys and functions that other features can use to navigate to this feature.<br><br>
116116
For example: The <code>:topic:api</code> module exposes a <code>Navigator.navigateToTopic</code> function that the
117117
<code>:interests:impl</code> module uses to navigate from the <code>InterestsScreen</code> to the <code>TopicScreen</code> when
118118
a topic is clicked.
@@ -121,15 +121,15 @@ For example, `sync`, `benchmark` and `test` modules, as well as `app-nia-catalog
121121
</td>
122122
</tr>
123123
<tr>
124-
<td><code>feature1:impl,</code><br>
125-
<code>feature2:impl</code><br>
124+
<td><code>feature:1:impl,</code><br>
125+
<code>feature:2:impl</code><br>
126126
...
127127
</td>
128128
<td>Functionality associated with a specific feature or user journey. Typically contains UI components and ViewModels which read data from other modules.<br>
129129
Examples include:<br>
130130
<ul>
131-
<li><a href="https://github.com/android/nowinandroid/tree/main/feature/topic"><code>feature:topic</code></a> displays information about a topic on the TopicScreen.</li>
132-
<li><a href="https://github.com/android/nowinandroid/tree/main/feature/foryou"><code>feature:foryou</code></a> which displays the user's news feed, and onboarding during first run, on the For You screen.</li>
131+
<li><a href="https://github.com/android/nowinandroid/tree/main/feature/topic/impl"><code>feature:topic:impl</code></a> displays information about a topic on the TopicScreen.</li>
132+
<li><a href="https://github.com/android/nowinandroid/tree/main/feature/foryou/impl"><code>feature:foryou:impl</code></a> which displays the user's news feed, and onboarding during first run, on the For You screen.</li>
133133
</ul>
134134
</td>
135135
<td><code>TopicScreen</code><br>

0 commit comments

Comments
 (0)