From f811403b208e0a4609bb21d5cf93f49f728047dc Mon Sep 17 00:00:00 2001 From: Steve Dee Date: Tue, 7 Feb 2012 23:20:46 -0800 Subject: [PATCH 1/2] fix typo --- lint/coding_guidelines.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lint/coding_guidelines.pl b/lint/coding_guidelines.pl index 78c4b0c..ca07fd7 100755 --- a/lint/coding_guidelines.pl +++ b/lint/coding_guidelines.pl @@ -12,8 +12,8 @@ # # ++ and -- are allowed. # -# Varibles are in camelCase. I prefer underscore_separated, but JavaScript uses -# camelCase everywhere. +# Variables are in camelCase. I prefer underscore_separated, but JavaScript +# uses camelCase everywhere. # # Private members and methods are prefixed by underscores. # From 6f02fe7424ac801038412ac8d37b04b949875458 Mon Sep 17 00:00:00 2001 From: Steve Dee Date: Tue, 7 Feb 2012 23:21:23 -0800 Subject: [PATCH 2/2] fix type annotation --- core/bitArray.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/bitArray.js b/core/bitArray.js index 803b9c5..a6d0617 100644 --- a/core/bitArray.js +++ b/core/bitArray.js @@ -31,7 +31,7 @@ sjcl.bitArray = { /** * Array slices in units of bits. - * @param {bitArray a} The array to slice. + * @param {bitArray} a The array to slice. * @param {Number} bstart The offset to the start of the slice, in bits. * @param {Number} bend The offset to the end of the slice, in bits. If this is undefined, * slice until the end of the array.