Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 3841707

Browse files
author
Adam Barth
committed
More typos
1 parent b095596 commit 3841707

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

sky/sdk/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Sky apps are written in Dart. To get started, we need to set up Dart SDK:
77
- Ensure that `$DART_SDK` is set to the path of your Dart SDK and that the
88
`dart` and `pub` executables are on your `$PATH`.
99

10-
Once you have installed Dart SDK, create a new directory and adding a
10+
Once you have installed Dart SDK, create a new directory and add a
1111
[pubspec.yaml](https://www.dartlang.org/tools/pub/pubspec.html):
1212

1313
```yaml
@@ -16,14 +16,14 @@ dependencies:
1616
sky: any
1717
```
1818
19-
Next, create a `lib` directory (where your Dart code will go) and use the `pub`
20-
tool to fetch the Sky package and its dependencies:
19+
Next, create a `lib` directory (which is where your Dart code will go) and use
20+
the `pub` tool to fetch the Sky package and its dependencies:
2121

2222
- `mkdir lib`
2323
- `pub get && pub run sky:init`
2424

25-
Currently Sky assumes the entry point for your application is a `main` function
26-
in `lib/main.dart`:
25+
Sky assumes the entry point for your application is a `main` function in
26+
`lib/main.dart`:
2727

2828
```dart
2929
import 'package:sky/widgets/basic.dart';
@@ -40,7 +40,7 @@ void main() {
4040
```
4141

4242
Execution starts in `main`, which runs a new instance of the `HelloWorldApp`.
43-
The `HelloWorldApp` builds a `Text` widget containing the famous _Hello, world!_
43+
The `HelloWorldApp` builds a `Text` widget containing the famous `Hello, world!`
4444
string and centers it on the screen using a `Center` widget. To learn more about
4545
the widget system, please see the [widgets tutorial](lib/widgets/README.md).
4646

@@ -51,7 +51,7 @@ Currently Sky requires an Android device running the Lollipop (or newer) version
5151
of the Android operating system.
5252

5353
- Install the `adb` tool from the [Android SDK](https://developer.android.com/sdk/installing/index.html)
54-
and ensure that `adb (inside `platform-tools` in the Android SDK) is in your
54+
and ensure that `adb` (inside `platform-tools` in the Android SDK) is in your
5555
`$PATH`.
5656

5757
- Enable developer mode on your device by visiting `Settings > About phone`

0 commit comments

Comments
 (0)