Skip to content

Commit ce891be

Browse files
Update content/javascript/concepts/dom-manipulation/terms/queryselectorall/queryselectorall.md
Co-authored-by: Mamta Wardhani <[email protected]>
1 parent cd258b8 commit ce891be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/javascript/concepts/dom-manipulation/terms/queryselectorall/queryselectorall.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This example returns a list of all `<div>` elements in the document with a class
4141
const matches = document.querySelectorAll("div.note, div.alert");
4242
```
4343

44-
Here, we get a list of < p > elements whose immediate parent element is a < div > with the class highlighted and which are located inside a container whose ID is test.
44+
In this example, we get a list of `<p>` elements whose immediate parent is a `<div>` with the class `highlighted`, and which are inside a container with the ID `test`:
4545

4646
```js
4747
const container = document. querySelector("#test");

0 commit comments

Comments
 (0)