From 8e7a65027f02ddbc37ff3922ec10862eeaf70e21 Mon Sep 17 00:00:00 2001 From: alteredworlds Date: Fri, 3 Feb 2023 16:53:43 +0000 Subject: [PATCH] Update docs/ArchitectureLearningJourney.md - User action follow topic --- docs/ArchitectureLearningJourney.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ArchitectureLearningJourney.md b/docs/ArchitectureLearningJourney.md index 9b5a0e6aa..741c5c424 100644 --- a/docs/ArchitectureLearningJourney.md +++ b/docs/ArchitectureLearningJourney.md @@ -309,7 +309,7 @@ User actions are communicated from UI elements to ViewModels using regular metho **Example: Following a topic** -The `InterestsScreen` takes a lambda expression named `followTopic` which is supplied from `InterestsViewModel.followTopic`. Each time the user taps on a topic to follow this method is called. The ViewModel then processes this action by informing the topics repository. +The `InterestsScreen` takes a lambda expression named `followTopic` which is supplied from `InterestsViewModel.followTopic`. Each time the user taps on a topic to follow this method is called. The ViewModel then processes this action by informing the user data repository. ## Further reading