diff --git a/snippets/arrayToHTMLList.md b/snippets/arrayToHTMLList.md index 9dedaafa5..9a07d585e 100644 --- a/snippets/arrayToHTMLList.md +++ b/snippets/arrayToHTMLList.md @@ -5,7 +5,7 @@ tags: browser,array,intermediate Converts the given array elements into `
  • ` tags and appends them to the list of the given id. -- Use `Array.prototype.map()` and `document.querySelector()` to create a list of html tags. +- Use `Array.prototype.map()` and `Document.querySelector()` to create a list of html tags. ```js const arrayToHTMLList = (arr, listID) => diff --git a/snippets/copyToClipboard.md b/snippets/copyToClipboard.md index f63abf5e5..d9f93ff55 100644 --- a/snippets/copyToClipboard.md +++ b/snippets/copyToClipboard.md @@ -8,7 +8,7 @@ Only works as a result of user action (i.e. inside a `click` event listener). - Create a new `