From c239669570c816bb16918e1d378ed6c9c21d68d4 Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Fri, 17 Jun 2016 12:10:37 +1000 Subject: [PATCH] README: avoid file overwrite in example --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1a3d2b5..b42fdd4 100644 --- a/README.md +++ b/README.md @@ -68,11 +68,11 @@ module.exports = foobar Each of these included packages are seperate to `bitcoinjs-lib`, and must be installed separately. They are however used in the bitcoinjs-lib public API. -Using browserify, compile `foobar.js` for use in the browser: +Using browserify, compile `foo.js` for use in the browser: - $ browserify foobar.js -s foobar > foobar.js + $ browserify foo.js -s foobar > bar.js -You will then be able to load `foobar.js` into your browser, with each of the dependencies above accessible from the global `foobar` object. +You will then be able to load `bar.js` into your browser, with each of the dependencies above accessible from the global `foobar` object. **NOTE**: See our package.json for the currently supported version of browserify used by this repository.