From 82225d1afc570ba0aa6172d6e5c5fdf8c4ded1cf Mon Sep 17 00:00:00 2001 From: Atul Varma Date: Sun, 8 May 2011 11:58:11 -0700 Subject: [PATCH] More trivial comment typos, its -> it's --- src/jschannel.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jschannel.js b/src/jschannel.js index 062d022..1a95555 100644 --- a/src/jschannel.js +++ b/src/jschannel.js @@ -378,12 +378,12 @@ message = e; } else if (typeof e === 'object') { // either an array or an object - // * if its an array of length two, then array[0] is the code, array[1] is the error message + // * if it's an array of length two, then array[0] is the code, array[1] is the error message if (e && s_isArray(e) && e.length == 2) { error = e[0]; message = e[1]; } - // * if its an object then we'll look form error and message parameters + // * if it's an object then we'll look form error and message parameters else if (typeof e.error === 'string') { error = e.error; if (!e.message) message = "";