Skip to content

Commit 5e1a1ba

Browse files
authored
chore: fix typos (#335)
1 parent 4dd4813 commit 5e1a1ba

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ npm run build
2424

2525
## Serve the documentation
2626

27-
Install the `serve` npm package globaly:
27+
Install the `serve` npm package globally:
2828

2929
```bash
3030
npm install -g serve

content/blog/2018-02-28-using-parse-in-nativescript-vue.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This brings us to Parse. [Parse](http://parseplatform.org/) was handed over to t
1111

1212
Lets see how we use Parse in NativeScript-Vue (it should also work in NativeScript). I am going to assume the following:
1313
* We are starting a new NativeScript-Vue project called `myApp` from scratch.
14-
* You have already signed up for a Parse account at a hosting provider or created your own parse server on Heroku. If you dont have an account I would suggest [back4app.com](https://www.back4app.com) they have a generous free tier.
14+
* You have already signed up for a Parse account at a hosting provider or created your own parse server on Heroku. If you don't have an account I would suggest [back4app.com](https://www.back4app.com) they have a generous free tier.
1515

1616
Lets jump into it.
1717
Open terminal and enter the following to create a new NativeScript-Vue app

content/docs/en/elements/action-bar/action-item.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ You can use the `v-show` directive to show `<ActionItem>` components based on a
4949
| `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/documentation/uikit/uibarbuttonitem/systemitem).
5050
| `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/guide/topics/resources/drawable-resource).
5151
| `ios.position` | `String` | Gets or sets the position of the `ActionItem` within the `ActionBar` for iOS.<br/>Valid values: `left` or `right`.<br/>Default value is `left`.
52-
| `android.position` | `String` | Gets or sets the position of the `ActionItem` within the `ActionBar` for Android.<br/>Valid values:<br/>`actionBar` (places the item in the ActionBar)<br/>`popup` (places the item in the options menu; renders items as text)<br/>`actionBarIfRoom` (places the item in the `ActionBar` if there is enough room for it there; otherwise, placess it in the options menu)<br/>Default value is `actionBar`.
52+
| `android.position` | `String` | Gets or sets the position of the `ActionItem` within the `ActionBar` for Android.<br/>Valid values:<br/>`actionBar` (places the item in the ActionBar)<br/>`popup` (places the item in the options menu; renders items as text)<br/>`actionBarIfRoom` (places the item in the `ActionBar` if there is enough room for it there; otherwise, places it in the options menu)<br/>Default value is `actionBar`.
5353

5454
## Events
5555

content/docs/en/elements/components/activity-indicator.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apiRef: https://docs.nativescript.org/api-reference/classes/_ui_activity_indicat
44
contributors: [MisterBrownRSA, rigor789, ikoevska]
55
---
66

7-
`<ActivityIndicator>` is a UI component that shows a progress indicator signaling to the user of an operation running in the background.
7+
`<ActivityIndicator>` is a UI component that shows a progress indicator signalling to the user of an operation running in the background.
88

99
---
1010

content/docs/en/elements/components/page.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ contributors: [rigor789, ikoevska, msaelices]
2121

2222
#### Using the `loaded` event for triggering UI changes
2323

24-
A typical scenario is performing UI changes after tha page is loaded. The recommended way to do it is by using the `loaded` event, triggered by NativeScript when the page is fully loaded:
24+
A typical scenario is performing UI changes after the page is loaded. The recommended way to do it is by using the `loaded` event, triggered by NativeScript when the page is fully loaded:
2525

2626
```html
2727
<Page @loaded="greet">

content/docs/en/elements/components/text-field.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ contributors: [MisterBrownRSA, rigor789, TheOriginalJosh, eddyverbruggen, ikoevs
3131
| `hint` | `String` | Gets or sets the placeholder text.
3232
| `isEnabled` | `Boolean` | Make the field disabled or enabled. Default value is `true`.
3333
| `editable` | `Boolean` | When `true`, indicates that the user can edit the value of the field.
34-
| `maxLength` | `Number` | Limits input to the spcified number of characters.
34+
| `maxLength` | `Number` | Limits input to the specified number of characters.
3535
| `secure` | `Boolean` | Hides the entered text when `true`. Use this property to create password input fields.<br/>Default value: `false`.
3636
| `keyboardType` | `KeyboardType` | Shows a custom keyboard for easier text input.<br/>Valid values: `datetime`, `phone`, `number`, `url`, or `email`.
3737
| `returnKeyType` | `ReturnKeyType` | Gets or sets the label of the return key.<br/>Valid values: `done`, `next`, `go`, `search`, or `send`.

content/docs/en/elements/layouts/grid-layout.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The following example creates a simple 2-by-2 grid with fixed column widths and
3636

3737
### Grid layout with star sizing
3838

39-
The following example creates a grid with responsive design, where space is alotted proportionally to child elements.
39+
The following example creates a grid with responsive design, where space is allotted proportionally to child elements.
4040

4141
```html
4242
<GridLayout columns="*, 2*" rows="2*, 3*" backgroundColor="#3c495e">

content/docs/en/getting-started/2-playground-tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ Here's how your app will look at the start and at the end of this section.
325325

326326
Out-of-the-box, the `<ListView>` component detects a tap gesture for every item and emits an event for it. The event carries information about the index of the tapped array item and the array item itself. To let the user choose the outcome of a tap gesture and expand the functionality of your app, you can tie a dialog to the event.
327327

328-
[`dialogs`](https://docs.nativescript.org/api-reference/modules/_ui_dialogs_) is a globablly available module that provides several configurable dialog types for apps: alert, action, prompt, login, confirmation. This implementation relies on [`action()`](/en/docs/elements/dialogs/action) to let the user choose if they want to mark a task as completed or delete it from the list of active tasks.
328+
[`dialogs`](https://docs.nativescript.org/api-reference/modules/_ui_dialogs_) is a globally available module that provides several configurable dialog types for apps: alert, action, prompt, login, confirmation. This implementation relies on [`action()`](/en/docs/elements/dialogs/action) to let the user choose if they want to mark a task as completed or delete it from the list of active tasks.
329329

330330
### Requirement implementation
331331

0 commit comments

Comments
 (0)