From 3764b66d8f3044b3be995f6af67e9bf6ca397568 Mon Sep 17 00:00:00 2001 From: Nicolas Coden Date: Sun, 18 Dec 2016 01:08:24 +0100 Subject: [PATCH] Fix #9518 - Incorrect documentation for `@function grid-column` Fix #9618 `@function grid-column` takes a list as argument and not a string. --- scss/grid/_column.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.47.2