Commit 7094e17f authored by Adam Barth's avatar Adam Barth

Fix typos in README.md

parent b5347ce5
...@@ -7,8 +7,8 @@ Sky apps are written in Dart. To get started, we need to set up Dart SDK: ...@@ -7,8 +7,8 @@ Sky apps are written in Dart. To get started, we need to set up Dart SDK:
- Ensure that `$DART_SDK` is set to the path of your Dart SDK and that the - Ensure that `$DART_SDK` is set to the path of your Dart SDK and that the
`dart` and `pub` executables are on your `$PATH`. `dart` and `pub` executables are on your `$PATH`.
Once we have the Dart SDK, we can creating a new directory and Once you have instealled Dart SDK, create a new directory and adding a
adding a [pubspec.yaml](https://www.dartlang.org/tools/pub/pubspec.html): [pubspec.yaml](https://www.dartlang.org/tools/pub/pubspec.html):
```yaml ```yaml
name: your_app_name name: your_app_name
...@@ -16,9 +16,8 @@ dependencies: ...@@ -16,9 +16,8 @@ dependencies:
sky: any sky: any
``` ```
Once the `pubspec.yaml` is in place, create a `lib` directory (where your Dart\ Next, create a `lib` directory (where your Dart code will go) and use the `pub`
code will go) and use the `pub` tool to fetch the Sky package and its tool to fetch the Sky package and its dependencies:
dependencies:
- `mkdir lib` - `mkdir lib`
- `pub get && pub run sky:init` - `pub get && pub run sky:init`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment