Skip to content

Commit

Permalink
Merge pull request gulpjs#471 from mcharytoniuk/patch-1
Browse files Browse the repository at this point in the history
typo in testing.md
  • Loading branch information
sindresorhus committed May 17, 2014
2 parents 2648270 + a3962aa commit 7d177cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/writing-a-plugin/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('gulp-prefixer', function() {
// buffer the contents to make sure it got prepended to
file.contents.pipe(es.wait(function(err, data) {
// check the contents
assert.equal(data, 'prependthistostreamwiththosecontents');
assert.equal(data, 'prependthisstreamwiththosecontents');
done();
}));
});
Expand Down

0 comments on commit 7d177cb

Please sign in to comment.