From d3f338ff27ee52ce631891ffa5f99c2b139b92ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Markb=C3=A5ge?= Date: Wed, 12 Aug 2015 00:32:52 -0700 Subject: [PATCH] Fix typecheck --- src/shared/utils/ReactErrorUtils.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/shared/utils/ReactErrorUtils.js b/src/shared/utils/ReactErrorUtils.js index fb7fba9942..e3f1ed5903 100644 --- a/src/shared/utils/ReactErrorUtils.js +++ b/src/shared/utils/ReactErrorUtils.js @@ -18,10 +18,10 @@ var ReactErrorUtils = { /** * Call a function while guarding against errors that happens within it. * - * @param name (?String) name of the guard to use for logging or debugging - * @param func (Function) function to invoke - * @param a (*) a First argument - * @param b (*) b Second argument + * @param {?String} name of the guard to use for logging or debugging + * @param {Function} func The function to invoke + * @param {*} a First argument + * @param {*} b Second argument */ invokeGuardedCallback: function(name, func, a, b) { try {