From f9b6605e04b39b782ca9bee37a8fc80426991eec Mon Sep 17 00:00:00 2001 From: Jon Hinks Date: Wed, 28 Sep 2016 21:52:12 +0100 Subject: [PATCH] Fix spelling --- assets/phantom.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/phantom.js b/assets/phantom.js index b38a7ee..9c7a550 100644 --- a/assets/phantom.js +++ b/assets/phantom.js @@ -81,7 +81,7 @@ server.listen(server_port, function (request, response) * Execute a callback if the method and url match * @param {string} method http method * @param {string} url url request - * @param {callback} callback the callback to be executed, recieves matched url paramters from the regex + * @param {callback} callback the callback to be executed, receives matched url paramters from the regex * @return {response} this */ request.connect = function (method, url, callback) { @@ -93,7 +93,7 @@ server.listen(server_port, function (request, response) return this; }; - console.log('Recieved command ', request.method, request.url, request.post ? request.post.value : ''); + console.log('Received command ', request.method, request.url, request.post ? request.post.value : ''); response.statusCode = 200;