From 0a025f328141b5f98a8f1d9635510433783d08e4 Mon Sep 17 00:00:00 2001 From: SphinxKnight Date: Tue, 3 Aug 2021 07:54:02 +0200 Subject: Fix other h2m unhandled (#1863) * Fixes some elements per Will's review * Remove useless spans from rich text copy in Kuma --- .../javascript/reference/global_objects/regexp/@@matchall/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/fr/web/javascript/reference/global_objects/regexp') diff --git a/files/fr/web/javascript/reference/global_objects/regexp/@@matchall/index.html b/files/fr/web/javascript/reference/global_objects/regexp/@@matchall/index.html index 234dbf6f07..303390a68c 100644 --- a/files/fr/web/javascript/reference/global_objects/regexp/@@matchall/index.html +++ b/files/fr/web/javascript/reference/global_objects/regexp/@@matchall/index.html @@ -51,7 +51,7 @@ original_slug: Web/JavaScript/Reference/Objets_globaux/RegExp/@@matchAll var str = '2016-01-02'; var resultat = re[Symbol.matchAll](str); -console.log(Array.from(resultat, x => x[0])); +console.log(Array.from(resultat, x => x[0])); // ["2016", "01", "02"] -- cgit v1.2.3-54-g00ecf