From 75803226f90bfc6c5baebe2e8b118e42f1ef60ce Mon Sep 17 00:00:00 2001 From: Ian Caunce Date: Wed, 22 Nov 2017 15:24:06 +0000 Subject: [PATCH] Fixed typo in the rem-calc's documentation --- scss/util/_unit.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/util/_unit.scss b/scss/util/_unit.scss index 6d60f38543..a4bddb8350 100644 --- a/scss/util/_unit.scss +++ b/scss/util/_unit.scss @@ -20,7 +20,7 @@ $global-font-size: 100% !default; /// Converts one or more pixel values into matching rem values. /// /// @param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses. -/// @param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base. +/// @param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$global-font-size` variable as the base. /// /// @returns {List} A list of converted values. @function rem-calc($values, $base: null) {