Skip to content

Commit

Permalink
Merge pull request #1870 from nschonni/double-the
Browse files Browse the repository at this point in the history
typo: Double word "event"
  • Loading branch information
davidbritch committed Jul 9, 2019
2 parents e21675c + 18fcd79 commit 252cb08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/xamarin-forms/app-fundamentals/app-lifecycle.md
Expand Up @@ -48,7 +48,7 @@ protected override void OnResume()
```

> [!IMPORTANT]
> On Android, the `OnStart` method will be called on rotation as well as when the application first starts, if the the main activity lacks `ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation` in the `[Activity()]` attribute.
> On Android, the `OnStart` method will be called on rotation as well as when the application first starts, if the main activity lacks `ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation` in the `[Activity()]` attribute.
<a name="page" />

Expand Down Expand Up @@ -76,4 +76,4 @@ There are four events on the [`Application`](xref:Xamarin.Forms.Application) cla
- `ModalPopped` - raised after a page has been popped modally.

> [!NOTE]
> The `ModalPopping` event event arguments, of type `ModalPoppingEventArgs`, contain a `Cancel` property. When `Cancel` is set to `true` the modal pop is cancelled.
> The `ModalPopping` event arguments, of type `ModalPoppingEventArgs`, contain a `Cancel` property. When `Cancel` is set to `true` the modal pop is cancelled.
2 changes: 1 addition & 1 deletion docs/xamarin-forms/user-interface/switch.md
Expand Up @@ -22,7 +22,7 @@ The following screenshot shows a `Switch` control in its **on** and **off** togg
The `Switch` control defines two properties:

* [`OnColor`](xref:Xamarin.Forms.Switch.OnColor) is a `Color` that affects how the `Switch` is rendered in the toggled, or **on**, state.
* [`IsToggled`](xref:Xamarin.Forms.Switch.IsToggled) is a `boolean` value that indicates whether the the `Switch` is **on**.
* [`IsToggled`](xref:Xamarin.Forms.Switch.IsToggled) is a `boolean` value that indicates whether the `Switch` is **on**.

These properties are backed by a [`BindableProperty`](xref:Xamarin.Forms.BindableProperty) object, which means the `Switch` can be styled and be the target of data bindings.

Expand Down

0 comments on commit 252cb08

Please sign in to comment.