Fix JS docblock

This commit is contained in:
Toby Zerner 2015-08-26 17:11:54 +09:30
parent 941479edb8
commit f331f1d07d

View File

@ -5,7 +5,7 @@
* @param {...String} dependentKeys The keys of the dependent values. * @param {...String} dependentKeys The keys of the dependent values.
* @param {function} compute The function which computes the value using the * @param {function} compute The function which computes the value using the
* dependent values. * dependent values.
* @return {} * @return {Function}
*/ */
export default function computed(...dependentKeys) { export default function computed(...dependentKeys) {
const keys = dependentKeys.slice(0, -1); const keys = dependentKeys.slice(0, -1);