diff --git a/index.d.ts b/index.d.ts index db0c2a8..6415096 100644 --- a/index.d.ts +++ b/index.d.ts @@ -6,7 +6,7 @@ List of standard HTML tags. import htmlTags = require('html-tags'); console.log(htmlTags); -//=> ['a', 'abbr', 'acronym', ...] +//=> ['a', 'abbr', 'acronym', …] ``` */ declare const htmlTags: readonly string[]; diff --git a/index.test-d.ts b/index.test-d.ts index 47810cb..28fc5df 100644 --- a/index.test-d.ts +++ b/index.test-d.ts @@ -5,10 +5,10 @@ import htmlTagsJson = require('./html-tags.json'); import voidHtmlTagsJson = require('./html-tags-void.json'); expectType(htmlTags); -expectError(htmlTags.push("")); +expectError(htmlTags.push('')); expectType(voidHtmlTags); -expectError(voidHtmlTags.push("")); +expectError(voidHtmlTags.push('')); expectType(htmlTagsJson); -expectError(htmlTagsJson.push("")); +expectError(htmlTagsJson.push('')); expectType(voidHtmlTagsJson); -expectError(voidHtmlTagsJson.push("")); +expectError(voidHtmlTagsJson.push('')); diff --git a/readme.md b/readme.md index 7fedf0d..22411f1 100644 --- a/readme.md +++ b/readme.md @@ -20,7 +20,7 @@ $ npm install html-tags const htmlTags = require('html-tags'); console.log(htmlTags); -//=> ['a', 'abbr', 'acronym', ...] +//=> ['a', 'abbr', 'acronym', …] ``` And void (self-closing) tags: @@ -29,7 +29,7 @@ And void (self-closing) tags: const voidHtmlTags = require('html-tags/void'); console.log(voidHtmlTags); -//=> ['area', 'base', 'br', ...] +//=> ['area', 'base', 'br', …] ``` diff --git a/void.d.ts b/void.d.ts index 479c8b5..dfecb47 100644 --- a/void.d.ts +++ b/void.d.ts @@ -6,7 +6,7 @@ List of void (self-closing) HTML tags. import voidHtmlTags = require('html-tags/void'); console.log(voidHtmlTags); -//=> ['area', 'base', 'br', ...] +//=> ['area', 'base', 'br', …] ``` */ declare const voidHtmlTags: readonly string[];