Skip to content

Commit e8d34fd

Browse files
committed
Change all occurrences of "must simpler" to "much simpler".
1 parent e1f334e commit e8d34fd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

source/api/commands/focus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ cy.get('textarea').focus().type('Nice Product!').blur()
6969

7070
`.focus()` is just a helpful command which is a simple shortcut. Normally there's no way for a user to simply "focus" an element without causing another action or side effect. Typically the user would have to click or tab to this element.
7171

72-
Oftentimes its must simpler and conveys what you're trying to test by just using `.focus()` directly.
72+
Oftentimes its much simpler and conveys what you're trying to test by just using `.focus()` directly.
7373

7474
If you want the other guarantees of waiting for an element to become actionable, you should use a different command like {% url `.click()` click %}.
7575

source/api/commands/submit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ cy.get('#contact').submit()
7373

7474
`.submit()` is just a helpful command which is a simple shortcut. Normally a user has to perform a different "action" to submit a form. It could be clicking a submit `<button>`, or pressing `enter` on a keyboard.
7575

76-
Oftentimes its must simpler and conveys what you're trying to test by just using `.submit()` directly.
76+
Oftentimes its much simpler and conveys what you're trying to test by just using `.submit()` directly.
7777

7878
If you want the other guarantees of waiting for an element to become actionable, you should use a different command like {% url `.click()` click %} or {% url `.type()` type %}.
7979

source/guides/getting-started/testing-your-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ The good news is that we aren't Selenium, nor are we a traditional e2e testing t
215215

216216
## Stubbing the Server
217217

218-
Another valid approach opposed to seeding and talking to your server is to just bypass it altogether. Must simpler!
218+
Another valid approach opposed to seeding and talking to your server is to just bypass it altogether. Much simpler!
219219

220220
While you'll still receive all of the regular HTML / JS / CSS assets from your server and you'll continue to {% url `cy.visit()` visit %} it in the same way - you can instead **stub** the JSON responses coming from it.
221221

0 commit comments

Comments
 (0)