From d6117b832fb34a089999607dc200602dacafd2cc Mon Sep 17 00:00:00 2001 From: Aparajita Fishman Date: Fri, 11 Mar 2011 09:46:42 -0500 Subject: [PATCH] Comment tweaks --- AppKit/CPFont.j | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/AppKit/CPFont.j b/AppKit/CPFont.j index 91ca914e1..7b7df7874 100644 --- a/AppKit/CPFont.j +++ b/AppKit/CPFont.j @@ -353,10 +353,9 @@ var CPFontNameKey = @"CPFontNameKey", @end -// aName must normalized +// aName must be normalized var _CPFontCreateCSSString = function(aName, aSize, isBold, isItalic) { - // aName might be a string or an array of preprocessed names var properties = (isItalic ? "italic " : "") + (isBold ? "bold " : "") + aSize + "px "; return properties + _CPFontConcatNameWithFallback(aName);