From d3abb27ffb78bb7b622ec1769e35e4142bb8d943 Mon Sep 17 00:00:00 2001 From: euzuro Date: Tue, 24 Jul 2007 21:56:35 +0000 Subject: [PATCH] correcting typo in ND git-svn-id: http://svn.openlayers.org/trunk/openlayers@3805 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/BaseTypes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpenLayers/BaseTypes.js b/lib/OpenLayers/BaseTypes.js index ea1191ff28..8ee06a4656 100644 --- a/lib/OpenLayers/BaseTypes.js +++ b/lib/OpenLayers/BaseTypes.js @@ -130,7 +130,7 @@ String.prototype.camelize = function() { * * Return: * {Integer} The number, rounded to the specified number of significant digits. - * If null, 0, or negaive value passed in, returns 0 + * If null, 0, or negative value passed in, returns 0 */ Number.prototype.limitSigDigs = function(sig) { var number = (sig > 0) ? this.toString() : 0;