From 575636e6b728a2bdd1a9bd72c57bbf2752f10887 Mon Sep 17 00:00:00 2001 From: zy26 Date: Sat, 13 Feb 2021 02:40:23 +0800 Subject: [PATCH] correct the typo in application.md (#60) --- docs/application.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/application.md b/docs/application.md index f1093683..9f531142 100644 --- a/docs/application.md +++ b/docs/application.md @@ -6,7 +6,7 @@ ## Application state -- [ApplicationContext.ts](./../src/application/Context/ApplicationContext.ts) holds the [CategoryCollectionState](./../src/application/Context/State/CategoryCollectionState.ts)] for each OS +- [ApplicationContext.ts](./../src/application/Context/ApplicationContext.ts) holds the [CategoryCollectionState](./../src/application/Context/State/CategoryCollectionState.ts) for each OS - Uses [state pattern](https://en.wikipedia.org/wiki/State_pattern) - Same instance is shared throughout the application to ensure consistent state - 📖 See [Application State | Presentation layer](./presentation.md#application-state) to read more about how the state should be managed by the presentation layer. @@ -17,6 +17,6 @@ - Compiled to `Application` domain object. - The scripts are defined and controlled in different data files per OS - Enables [data-driven programming](https://en.wikipedia.org/wiki/Data-driven_programming) and easier contributions -- Application data is defined in collection fil es and +- Application data is defined in collection files and - 📖 See [Application data | Presentation layer](./presentation.md#application-data) to read how the application data is read by the presentation layer. - 📖 See [collection files documentation](./collection-files.md) to read more about how the data files are structured/defined and see [collection yaml files](./../src/application/collections/) to directly check the code.