From a34d040229e4286cf5028c42e082b24eca2e9e49 Mon Sep 17 00:00:00 2001 From: David Greenspan Date: Tue, 4 Aug 2015 10:33:16 -0700 Subject: [PATCH] Fix wrong type in doc comment --- tools/isobuild/package-source.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/isobuild/package-source.js b/tools/isobuild/package-source.js index 131e11e2d2..ba135dca6b 100644 --- a/tools/isobuild/package-source.js +++ b/tools/isobuild/package-source.js @@ -548,10 +548,10 @@ _.extend(PackageSource.prototype, { * @param {String} options.documentation Optional Filepath to * documentation. Set to 'README.md' by default. Set this to null to submit * no documentation. - * @param {String} options.debugOnly A package with this flag set to true + * @param {Boolean} options.debugOnly A package with this flag set to true * will not be bundled into production builds. This is useful for packages * meant to be used in development only. - * @param {String} options.prodOnly A package with this flag set to true + * @param {Boolean} options.prodOnly A package with this flag set to true * will ONLY be bundled into production builds. */ describe: function (options) {