Skip to content

Commit dcea3ed

Browse files
mjhenkesMikeMcC399
andauthored
Apply suggestions from code review
Co-authored-by: Mike McCready <66998419+MikeMcC399@users.noreply.github.com>
1 parent 7d78203 commit dcea3ed

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/guides/core-concepts/introduction-to-cypress.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1351,7 +1351,7 @@ assertions_.
13511351
#### Example #1: Implicit Assertion
13521352

13531353
```js
1354-
// because .get() has a implicit assertion
1354+
// because .get() has an implicit assertion
13551355
// that this element exists, it can time out and fail
13561356
cy.get('.mobile-nav')
13571357
```

docs/guides/guides/screenshots-and-videos.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ possibly uploading it to Cypress Cloud.
118118
:::cypress-config-example
119119

120120
In addition to enabling or disabling video compress, you can specify the CRF
121-
value used to compress the video. Here is some common scenario:
121+
value used to compress the video. Here are some common scenarios:
122122

123123
- If the machine is encoding the video slowly (which is often the case for
124124
virtual machines that use less CPU cores), try increasing the CRF value.

docs/guides/references/best-practices.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ Why you shouldn't do this in end-to-end tests:
642642
- Resetting tests is much slower than adding more assertions
643643

644644
It is common for tests in Cypress to issue 30+ commands. Because nearly every
645-
command has a implicit assertions (and can therefore fail), even by limiting
645+
command has an implicit assertion (and can therefore fail), even by limiting
646646
your assertions you're not saving yourself anything because **any single command
647647
could implicitly fail**.
648648

0 commit comments

Comments
 (0)