Skip to content

Commit 75ea50a

Browse files
authored
fix typo descendents to descendants (#5135)
1 parent 3dc727d commit 75ea50a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guides/references/assertions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ You will commonly use these chainers after using DOM commands like:
115115
| exist | `.should('exist')`<br />`expect($nonexistent).not.to.exist` |
116116
| match(_selector_) | `.should('match', ':empty')`<br />`expect($emptyEl).to.match(':empty')` |
117117
| contain(_text_) | `.should('contain', 'text')`<br />`expect($el).to.contain('text')` |
118-
| descendants(_selector_) | `.should('have.descendents', 'div')`<br />`expect($el).to.have.descendants('div')` |
118+
| descendants(_selector_) | `.should('have.descendants', 'div')`<br />`expect($el).to.have.descendants('div')` |
119119

120120
<!-- textlint-enable -->
121121

0 commit comments

Comments
 (0)