From: Nicolas Coden Date: Sun, 18 Dec 2016 00:08:24 +0000 (+0100) Subject: Fix #9518 - Incorrect documentation for `@function grid-column` X-Git-Tag: v6.3.1-rc1~34^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9519%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix #9518 - Incorrect documentation for `@function grid-column` Fix #9618 `@function grid-column` takes a list as argument and not a string. --- diff --git a/scss/grid/_column.scss b/scss/grid/_column.scss index c49645a7d..615e6fd2d 100644 --- a/scss/grid/_column.scss +++ b/scss/grid/_column.scss @@ -12,7 +12,7 @@ /// Width of the column. Accepts multiple values: /// - A percentage value will make the column that exact size. /// - A single digit will make the column span that number of columns wide, taking into account the column count of the parent row. -/// - A string of the format "x of y" will make a column that is *x* columns wide, assuming *y* total columns for the parent. +/// - A list of the format "x of y" (without quotes) will make a column that is *x* columns wide, assuming *y* total columns for the parent. /// /// @returns {Number} A calculated percentage value. @function grid-column($columns) {