From cab2ac642ed68206aa970a85f628453efb72556f Mon Sep 17 00:00:00 2001 From: Jeffrey <61218880+plan-do-break-fix@users.noreply.github.com> Date: Mon, 26 Apr 2021 02:48:01 -0500 Subject: [PATCH] fix(docs): corrects typos in project documentation (#613) --- tutorials/Navigation/README.md | 2 +- tutorials/Swing_Integration/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/Navigation/README.md b/tutorials/Navigation/README.md index 2932fb432d..4ef6b24e7a 100644 --- a/tutorials/Navigation/README.md +++ b/tutorials/Navigation/README.md @@ -150,7 +150,7 @@ This pattern should be chosen if any of the following apply: 1. You support Multipaltform targets with different UI frameworks, and you want to share the navigation logic between them. For example if you support Desktop with Compose UI, iOS with SwiftUI and/or JavaScript with React UI. 2. You want to keep children running while in the back stack (stopped, but not destroyed). -3. You are targetting Android and need instance retaining functionality in children (aka AndroidX [ViewModels](https://developer.android.com/topic/libraries/architecture/viewmodel)) and you want to hide this logic as implementation details. +3. You are targeting Android and need instance retaining functionality in children (aka AndroidX [ViewModels](https://developer.android.com/topic/libraries/architecture/viewmodel)) and you want to hide this logic as implementation details. 4. You want to keep the navigation logic (and probably the business logic) separate from UI. The first point is quite obvious. If Compose is not the only UI you are using and you want to share the navigation logic, then it can not be managed by Compose. diff --git a/tutorials/Swing_Integration/README.md b/tutorials/Swing_Integration/README.md index 732e919504..34bea20745 100644 --- a/tutorials/Swing_Integration/README.md +++ b/tutorials/Swing_Integration/README.md @@ -1,4 +1,4 @@ -# Integration Compose for Desktop into Swing-based aplication +# Integration Compose for Desktop into Swing-based application ## What is covered