Browse Source

Fixed types in JSDocs.

Kamil Piechaczek 6 years ago
parent
commit
b42772fcf6
1 changed files with 4 additions and 4 deletions
  1. 4 4
      scripts/docs/snippetadapter.js

+ 4 - 4
scripts/docs/snippetadapter.js

@@ -430,17 +430,17 @@ function getHTMLImports( files, mapFunction ) {
 /**
  * @typedef {Object} SnippetSource
  *
- * @property {<String>} html An absolute path to the HTML sample.
+ * @property {String} html An absolute path to the HTML sample.
  *
- * @property {<String>} css An absolute path to the CSS sample.
+ * @property {String} css An absolute path to the CSS sample.
  *
- * @property {<String>} js An absolute path to the JS sample.
+ * @property {String} js An absolute path to the JS sample.
  */
 
 /**
  * @typedef {Object} SnippetConfiguration
  *
- * @property {<String>} [language] A language that will be used for building the editor.
+ * @property {String} [language] A language that will be used for building the editor.
  *
  * @property {Array.<String>} [dependencies] Names of samples that are required to working.
  */