Przeglądaj źródła

Fixed `@type` to `@property`.

fredck 11 lat temu
rodzic
commit
950871b8c0
1 zmienionych plików z 3 dodań i 3 usunięć
  1. 3 3
      dev/tasks/build/builder.js

+ 3 - 3
dev/tasks/build/builder.js

@@ -20,7 +20,7 @@ module.exports = Builder = function( target ) {
 	 *
 	 * **Warning**: if existing, this directory will be deleted before processing.
 	 *
-	 * @type {string}
+	 * @property {String}
 	 */
 	this.target = target || 'build';
 
@@ -29,7 +29,7 @@ module.exports = Builder = function( target ) {
 	 *
 	 * **Warning**: if existing, this directory will be deleted before processing.
 	 *
-	 * @type {string}
+	 * @property {String}
 	 */
 	this.tmp = 'build_tmp';
 
@@ -37,7 +37,7 @@ module.exports = Builder = function( target ) {
 	 * The list of tasks to be executed by the `build()` method. Each entry is an Array containing the name of the
 	 * method inside `tasks` to execute and the message to show to the end user when executing it.
 	 *
-	 * @type {Array}
+	 * @property {Array}
 	 */
 	this.taskList = [
 		[ 'cleanUp', 'Cleaning the "' + target + '" directory...' ],