From f331f1d07dcf7a2b4101c11a7fd2741d46104686 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Wed, 26 Aug 2015 17:11:54 +0930 Subject: [PATCH] Fix JS docblock --- framework/core/js/lib/utils/computed.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/js/lib/utils/computed.js b/framework/core/js/lib/utils/computed.js index de129ec73..fae4e892f 100644 --- a/framework/core/js/lib/utils/computed.js +++ b/framework/core/js/lib/utils/computed.js @@ -5,7 +5,7 @@ * @param {...String} dependentKeys The keys of the dependent values. * @param {function} compute The function which computes the value using the * dependent values. - * @return {} + * @return {Function} */ export default function computed(...dependentKeys) { const keys = dependentKeys.slice(0, -1);