From d921d3d6dd3ec61888083ac37214d0354a407c38 Mon Sep 17 00:00:00 2001 From: Richlv Date: Wed, 19 Jul 2023 13:45:13 +0300 Subject: [PATCH] typo fixes --- umap/static/umap/js/umap.core.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/umap/static/umap/js/umap.core.js b/umap/static/umap/js/umap.core.js index 826c838b..496de2fb 100644 --- a/umap/static/umap/js/umap.core.js +++ b/umap/static/umap/js/umap.core.js @@ -482,7 +482,7 @@ L.U.Help = L.Class.extend({ const container = L.DomUtil.create('div'), title = L.DomUtil.add('h3', '', container, L._('Text formatting')), elements = L.DomUtil.create('ul', '', container) - L.DomUtil.add('li', '', elements, L._('*simple star for italic*')) + L.DomUtil.add('li', '', elements, L._('*single star for italic*')) L.DomUtil.add('li', '', elements, L._('**double star for bold**')) L.DomUtil.add('li', '', elements, L._('# one hash for main heading')) L.DomUtil.add('li', '', elements, L._('## two hashes for second heading')) @@ -516,7 +516,7 @@ L.U.Help = L.Class.extend({ 'Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}' ) ) - L.DomUtil.add('li', '', elements, L._('--- for an horizontal rule')) + L.DomUtil.add('li', '', elements, L._('--- for a horizontal rule')) return container },