From 77afcd34c9655ab1a103e4b8a4e7e08db2bc994a Mon Sep 17 00:00:00 2001 From: Farouk Bennaceur <30836906+FarBen95@users.noreply.github.com> Date: Thu, 22 Oct 2020 18:12:40 +0100 Subject: [PATCH] Update Startup.md Just a microscopic error. --- docs/Architecture/Startup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Architecture/Startup.md b/docs/Architecture/Startup.md index 583ed6f5..a9a267a9 100644 --- a/docs/Architecture/Startup.md +++ b/docs/Architecture/Startup.md @@ -4,7 +4,7 @@ Every app or web, with complex patterns involved, normally requires an initial s ## The Startup class -As you may know, the App class (App.xaml file in the Inventory.App project), is the fisrt class to be executed when we launch the application. In the overriden methods `OnLaunched` and `OnActivated` of this class, we execute the intial setup and initialize the first page to load: +As you may know, the App class (App.xaml file in the Inventory.App project), is the first class to be executed when we launch the application. In the overriden methods `OnLaunched` and `OnActivated` of this class, we execute the intial setup and initialize the first page to load: ```csharp protected override async void OnLaunched(LaunchActivatedEventArgs e)