Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ $project->addTask('test', ['phpspec', function ($phpspec) {
}]);

$project->addTask('css', ['fs', 'sass', function ($fs, $sass) {
fs->open('my.scss')
$fs->open('my.scss')
->pipe($sass)
->pipe($fs->touch('my.css'));
}]);
Expand Down Expand Up @@ -95,7 +95,7 @@ $project = new Task\Project('foo');
return $project;
```

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:
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:

```bash
$> task
Expand Down