Skip to content

Commit 6c06adb

Browse files
committed
docs: Fix spelling mistakes, minor copy edit
1 parent f6ca708 commit 6c06adb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ARCHITECTURE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Examples:
3434

3535
But, it's important to understand that this isn't because we ship built-in support for these specifically. Doing so would have likely have limited the versions we support, which in turn imposes an update churn for the end-user. It would also subtly alter how your code and test framework behave, which the user doesn't know about until things fail, at which point the illusion of "just works" quickly fades away. It would also incur extra maintenance and support issues for us.
3636

37-
Instead, we build on the framework-agnostic TAP protocol. The user is responsible for setting up this one thing (unless it's the default, like in QUnit and Tape), and after that everything truly just works. It works transparantly with nothing sent to QTap that you can't also see in the browser console. There are no surprise side-channels or secret ingredients.
37+
Instead, we build on the framework-agnostic TAP protocol. The user is responsible for setting up this one thing (unless it's the default, like in QUnit and Tape), and after that everything truly just works. It works transparently with nothing sent to QTap that you can't also see in the browser console. There are no surprise side-channels or secret ingredients.
3838

3939
See also the [Unix philosophy](https://en.wikipedia.org/wiki/Unix_philosophy).
4040

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,20 +35,20 @@ npx qtap test/index.html
3535
- No installation wizard.
3636

3737
* **Real Debugging**
38-
- Retreive console errors, uncaught errors, and unhandled Promise rejections from the browser directly in your build output.
38+
- Retrieve console errors, uncaught errors, and unhandled Promise rejections from the browser directly in your build output.
3939
- Instantly debug your tests locally in a real browser of your choosing with full access to browser DevTools to set breakpoints, measure performance, step through function calls, measure code coverage, and more.
40-
- No imposed bundling or transpilation. Only your unchanged source code or production bundler of choice, running as-is.
41-
- No need to inspect Node.js or attach it to an incomplete version of Chrome DevTools.
40+
- No imposed bundling or compiler abstraction. Only your unchanged source code or your production bundler of choice, running as-is.
41+
- No need to inspect Node.js processes.
4242

4343
* **Real Browsers**
44-
- No need to support yet another "browser" just for testing (jsdom emulation in Node.js).
44+
- No need to support yet another "browser" just for testing (e.g. jsdom in Node.js).
4545
- No Selenium or WebDriver to install, update, and manage (e.g. chromedriver or geckodriver).
4646
- No downloading large binaries of Chrome (e.g. Puppeteer).
4747
- No patched or modified versions of browsers (e.g. Playwright).
4848
- No Docker containers.
4949

5050
* **Continuous Integration**
51-
GitHub, Jenkins, Travis, Circle, you can run anywhere.
51+
GitHub, Jenkins, Travis CI, Circle CI, you can run anywhere.
5252

5353
* **Ecosystem**
5454
Your test framework likely already supports TAP.

0 commit comments

Comments
 (0)