From e874dd411001cbefea1f90b33a020589f013bd0c Mon Sep 17 00:00:00 2001 From: Tom Hudson Date: Thu, 24 Apr 2014 19:56:41 +0100 Subject: [PATCH] Fixes typos in index.md --- index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.md b/index.md index d2e53a7..7083c00 100644 --- a/index.md +++ b/index.md @@ -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')); }]); @@ -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