From: Aurelio De Rosa Date: Tue, 10 Jun 2014 21:26:35 +0000 (+0100) Subject: CSS: Removed redundant "to the number" in comment X-Git-Tag: 3.0.0-alpha1~231 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=895ea6887dd02a44067d041db00c355c80e930a3;p=jquery.git CSS: Removed redundant "to the number" in comment Closes gh-1594 --- diff --git a/src/css.js b/src/css.js index fc4524ed0..94a1d234f 100644 --- a/src/css.js +++ b/src/css.js @@ -283,7 +283,7 @@ jQuery.extend({ return; } - // If a number, add 'px' to the (except for certain CSS properties) + // If a number was passed in, add 'px' (except for certain CSS properties) if ( type === "number" && !jQuery.cssNumber[ origName ] ) { value += "px"; }