From 71b669aad3c9c9ecb13843b861fc423999d2d501 Mon Sep 17 00:00:00 2001 From: Geoff Kimball Date: Tue, 23 Feb 2016 17:11:45 -0800 Subject: [PATCH] Add missing type value to @returns annotation in map-deep-get() mixin --- scss/util/_value.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/util/_value.scss b/scss/util/_value.scss index e4377f9d3..54e562b03 100644 --- a/scss/util/_value.scss +++ b/scss/util/_value.scss @@ -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); -- 2.47.2