From bba987dd801f4513cb196ebc538f745d8e2cee81 Mon Sep 17 00:00:00 2001 From: Andrew Duffy Date: Sun, 25 Aug 2013 19:33:50 -0700 Subject: [PATCH] Fixed type of to() - > toEnd(). --- src/toEnd.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/toEnd.js b/src/toEnd.js index b3ea3a8..f6d099d 100644 --- a/src/toEnd.js +++ b/src/toEnd.js @@ -8,7 +8,7 @@ var path = require('path'); //@ Examples: //@ //@ ```javascript -//@ cat('input.txt').to('output.txt'); +//@ cat('input.txt').toEnd('output.txt'); //@ ``` //@ //@ Analogous to the redirect-and-append operator `>>` in Unix, but works with JavaScript strings (such as