From 1b42eb3ce6aab1a1b62d32d9c3a5781c28f8531f Mon Sep 17 00:00:00 2001 From: nmrugg Date: Sat, 23 Jul 2011 13:10:25 +0800 Subject: [PATCH] Fixed typos in the readme. --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 79fb796..aa9cb85 100644 --- a/readme.md +++ b/readme.md @@ -15,7 +15,7 @@ Live demos can be found [here](http://nmrugg.github.com/LZMA-JS/ "Demos"). How to Use --- -First, load the bootstraping code. +First, load the bootstrapping code. /// In a browser: @@ -26,7 +26,7 @@ First, load the bootstraping code. Create the LZMA object. /// LZMA([optional path]) - /// If lzma_worker.js is in the same director, you don't need to set the path. + /// If lzma_worker.js is in the same directory, you don't need to set the path. /// You should be able to do the first two steps simultaneously in Node.js: var my_lzma = require("../src/lzma.js").LZMA(); var my_lzma = new LZMA("../src/lzma_worker.js");