diff --git a/docs/concepts/application-lifetimes.md b/docs/concepts/application-lifetimes.md index 5d71bd633..bfb782a72 100644 --- a/docs/concepts/application-lifetimes.md +++ b/docs/concepts/application-lifetimes.md @@ -4,7 +4,7 @@ description: CONCEPTS # Application Lifetimes -Not all platforms are created equal! For example, the lifetime management that you may be used to developing with in Windows Forms or WPF can operate only on desktop-style platforms. _Avalonia UI_ is a cross-platform framework; so to make your application portable, it provides several different lifetime models for your application, and also allows you to control everything manually if the target platform permits. +Not all platforms are created equal! For example, the lifetime management that you may be using to developing with in Windows Forms or WPF can operate only on desktop-style platforms. _Avalonia UI_ is a cross-platform framework; so to make your application portable, it provides several different lifetime models for your application, and also allows you to control everything manually if the target platform permits. ## How do lifetimes work? @@ -110,7 +110,7 @@ class Program // used to stop the main loop var cts = new CancellationTokenSource(); - // Do you startup code here + // Do your startup code here new Window().Show(); // Start the main loop