From ce031c7f508592dc629507264996920aa4185391 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Fri, 16 Oct 2020 19:16:24 +0530 Subject: [PATCH] Document Fragment - Clarify wordings --- docs/create-modify-element.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/create-modify-element.mdx b/docs/create-modify-element.mdx index cebde18..3cad265 100644 --- a/docs/create-modify-element.mdx +++ b/docs/create-modify-element.mdx @@ -205,7 +205,7 @@ parent.insertBefore(newEle, ref.nextSibling) DocumentFragment can be considered to be a off-canvas lightweight `document` object. It is generally used for batching multiple operations - by doing them over time in the fragment and rendering it in one shot to the actual visible DOM. -Because it is not rendered, making changes to the fragment doesn't cause any performance impact (no reflow). +Because fragment is not rendered, making changes to it doesn't cause any performance impact (no reflow). **Methods** -