]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Fixed typo in the rem-calc's documentation 10785/head
authorIan Caunce <ian@hallnet.co.uk>
Wed, 22 Nov 2017 15:24:06 +0000 (15:24 +0000)
committerIan Caunce <ian@hallnet.co.uk>
Wed, 22 Nov 2017 15:27:49 +0000 (15:27 +0000)
scss/util/_unit.scss

index 6d60f38543b136c0f426f405049ced96cb13bd9a..a4bddb835065140ad142908d3fdfe4174a0735f6 100644 (file)
@@ -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) {