summaryrefslogtreecommitdiffstats
path: root/help3xsl
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-03-27 12:26:16 +0100
committerAndras Timar <andras.timar@collabora.com>2019-03-27 15:41:30 +0100
commit06d97c85e4a2780f15fd70b8b0b7384001a695c0 (patch)
treeaf58f7d1274a7daca9443c4dc41878a98fdb4d5c /help3xsl
parenttdf#124245 Polyfills and fixes for IE11 (diff)
downloadhelp-06d97c85e4a2780f15fd70b8b0b7384001a695c0.tar.gz
help-06d97c85e4a2780f15fd70b8b0b7384001a695c0.zip
Fix typo
Change-Id: I064146b36884740fc90b889ea92758a10782b5dd Reviewed-on: https://gerrit.libreoffice.org/69823 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'help3xsl')
-rw-r--r--help3xsl/polyfills.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/help3xsl/polyfills.js b/help3xsl/polyfills.js
index ae5bc93834..0c14764d78 100644
--- a/help3xsl/polyfills.js
+++ b/help3xsl/polyfills.js
@@ -46,7 +46,7 @@ if (!Element.prototype.matches) {
// Polyfill for iterable Set (IE11)
// from: https://stackoverflow.com/a/45686452/3057764
if (new Set([0]).size === 0) {
- //constructor doesnt take an iterable as an argument - thanks IE
+ //constructor doesn't take an iterable as an argument - thanks IE
const BuiltinSet = Set;
Set = function Set(iterable) {
const set = new BuiltinSet();