Skip to content

Commit e874dd4

Browse files
committed
Fixes typos in index.md
1 parent e0fd196 commit e874dd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $project->addTask('test', ['phpspec', function ($phpspec) {
4444
}]);
4545

4646
$project->addTask('css', ['fs', 'sass', function ($fs, $sass) {
47-
fs->open('my.scss')
47+
$fs->open('my.scss')
4848
->pipe($sass)
4949
->pipe($fs->touch('my.css'));
5050
}]);
@@ -95,7 +95,7 @@ $project = new Task\Project('foo');
9595
return $project;
9696
```
9797

98-
We suggest putting the `Taskfile` in the root of yo project. The CLI package will look for a `Taskfile` in the current working directory, so `cd` in to your project and run:
98+
We suggest putting the `Taskfile` in the root of your project. The CLI package will look for a `Taskfile` in the current working directory, so `cd` in to your project and run:
9999

100100
```bash
101101
$> task

0 commit comments

Comments
 (0)