From dea759d5b82bea11fccfa56f7a353607ff8e26ec Mon Sep 17 00:00:00 2001 From: Toby Zerner <toby.zerner@gmail.com> Date: Wed, 26 Aug 2015 17:11:54 +0930 Subject: [PATCH] Fix JS docblock --- js/lib/utils/computed.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/lib/utils/computed.js b/js/lib/utils/computed.js index de129ec73..fae4e892f 100644 --- a/js/lib/utils/computed.js +++ b/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);