]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Add missing type value to @returns annotation in map-deep-get() mixin
authorGeoff Kimball <geoff@zurb.com>
Wed, 24 Feb 2016 01:11:45 +0000 (17:11 -0800)
committerGeoff Kimball <geoff@zurb.com>
Wed, 24 Feb 2016 01:12:28 +0000 (17:12 -0800)
scss/util/_value.scss

index e4377f9d38532ff3aafac65381fe33e2ebaf4e7f..54e562b03794b64023b2fb4c5893305aeaaff547 100644 (file)
@@ -98,7 +98,7 @@
 ///
 /// @param {Map} $map - Map to pull a value from.
 /// @param {String} $keys... - Keys to use when looking for a value.
-/// @return The value found in the map.
+/// @returns {Mixed} The value found in the map.
 @function map-deep-get($map, $keys...) {
   @each $key in $keys {
     $map: map-get($map, $key);