diff --git a/docs_src/content/docs/01-getting-started.md b/docs_src/content/docs/01-getting-started.md
index 380bcedb..e8942d56 100644
--- a/docs_src/content/docs/01-getting-started.md
+++ b/docs_src/content/docs/01-getting-started.md
@@ -20,8 +20,8 @@ Check it worked by running `ns`:
Svelte-Native really is native, so it needs a mobile device to run. The build setup for iOS or Android can be a pain, so the wizards at Nativescript have created the NativeScript playground app. This allows us to run Svelte-Native application code without having to build the full mobile application.
-[](https://itunes.apple.com/us/app/nativescript-playground/id1263543946?mt=8&ls=1)
-[](https://play.google.com/store/apps/details?id=org.nativescript.play)
+[](https://preview.nativescript.org/ios)
+[](https://preview.nativescript.org/android)
#### Create a new Svelte-Native app
diff --git a/docs_src/content/docs/35-action-bars.md b/docs_src/content/docs/35-action-bars.md
index 6306c196..77f57330 100644
--- a/docs_src/content/docs/35-action-bars.md
+++ b/docs_src/content/docs/35-action-bars.md
@@ -84,7 +84,7 @@ To remove this styling from your app, you can set the `flat` property to `true`.
| Name | Type | Description |
|------|------|-------------|
-| `ios.systemIcon` | `Number` | Gets or sets the icon of the `ActionItem` for iOS. The value must be a number from the [`UIBarButtonSystemItem` enumeration](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIBarButtonItem_Class/#//apple_ref/c/tdef/UIBarButtonSystemItem).
+| `ios.systemIcon` | `Number` | Gets or sets the icon of the `ActionItem` for iOS. The value must be a number from the [`UIBarButtonSystemItem.SystemItem` enumeration](https://developer.apple.com/documentation/uikit/uibarbuttonitem/systemitem/).
| `android.systemIcon` | `String` | Gets or sets the icon of the `ActionItem` for Android. The value must be the name of a [drawable resource](https://developer.android.com/reference/android/R.drawable).
| `ios.position` | `String` | Gets or sets the position of the `ActionItem` within the `ActionBar` for iOS. Valid values: `left` or `right`. Default value is `left`.
| `android.position` | `String` | Gets or sets the position of the `ActionItem` within the `ActionBar` for Android. Valid values: `actionBar` (places the item in the ActionBar), `popup` (places the item in the options menu; renders items as text), and `actionBarIfRoom` (places the item in the `ActionBar` if there is enough room for it there; otherwise, places it in the options menu). Default value is `actionBar`.
diff --git a/docs_src/content/tutorial/05-todo-app-example.md b/docs_src/content/tutorial/05-todo-app-example.md
index 33540557..44e37d58 100644
--- a/docs_src/content/tutorial/05-todo-app-example.md
+++ b/docs_src/content/tutorial/05-todo-app-example.md
@@ -236,7 +236,7 @@ The [NativeScript core theme](https://www.nativescript.org/blog/an-early-look-at
```
-Our input text should also be more emphasised. At the bottom of `App.svelte` add the following style tag:
+Our input text should also be more emphasised. At the bottom of `Home.svelte` add the following style tag:
```html