From c015a5c03b5f8977c6cf7deef84138cdab82b64b Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 9 Jan 2015 10:03:40 -0800 Subject: [PATCH] :memo: Add period --- src/color.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/color.coffee b/src/color.coffee index 52b08c0a4..6400f6b96 100644 --- a/src/color.coffee +++ b/src/color.coffee @@ -52,11 +52,11 @@ class Color enumerable: true configurable: false - # Esssential: Returns a {String} in the form `'#abcdef'` + # Esssential: Returns a {String} in the form `'#abcdef'`. toHexString: -> "##{numberToHexString(@red)}#{numberToHexString(@green)}#{numberToHexString(@blue)}" - # Esssential: Returns a {String} in the form `'rgba(25, 50, 75, .9)'` + # Esssential: Returns a {String} in the form `'rgba(25, 50, 75, .9)'`. toRGBAString: -> "rgba(#{@red}, #{@green}, #{@blue}, #{@alpha})"