From 13579205e9caee1ccee6d19f92996c2981aa39bd Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Fri, 24 Mar 2017 17:33:39 +0800 Subject: [PATCH] Remove extra words --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 187f91d..dc5937a 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ window.navigator.userAgent; ## Universal Testing Pattern -You can use a really simple pattern to enable your browser modules to run in Node.js with `window`. Just allow a window object to be passed in to your module and prepend any references to browser globals with `win`. Set `win` to the passed in window object if it exists, otherwise fallback to global `window`. +You can use a really simple pattern to enable your browser modules to run in Node.js. Just allow a window object to be passed in to your module and prepend any references to browser globals with `win`. Set `win` to the passed in window object if it exists, otherwise fallback to global `window`. ```js module.exports = function(text, win) {