diff --git a/docs/create-modify-element.mdx b/docs/create-modify-element.mdx index 67d6d83..9c060ca 100644 --- a/docs/create-modify-element.mdx +++ b/docs/create-modify-element.mdx @@ -18,7 +18,7 @@ This method returns the **first element that matches the CSS selector**. If no m ```js document.querySelector(selector); -// Ex. - .container > .box +// Ex- .container > .box document.querySelector(".box"); // returns .box document.querySelector(".not-found"); // null ```