summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRong Sen Ng <wes.ngrongsen@gmail.com>2019-06-24 08:08:14 -0500
committerRyan Dahl <ry@tinyclouds.org>2019-06-24 06:08:14 -0700
commit69d4d88b4f00b26112ad1d31fd551b032884f0d8 (patch)
tree916acdbc6969f2638c7655a43d4113d56edad421
parentcd7ed28c36192cab035557677a3e1748bbdb0334 (diff)
typo
Original: https://github.com/denoland/deno_std/commit/ba4210cdb92e7f3d3e9471bf055231221b8be085
-rw-r--r--testing/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/README.md b/testing/README.md
index 0445e344f..3db9f58e2 100644
--- a/testing/README.md
+++ b/testing/README.md
@@ -13,7 +13,7 @@ object is passed, the `name` property is used to identify the test. If the asser
Asserts are exposed in `testing/asserts.ts` module.
-- `equal()` - Deep comparision function, where `actual` and `expected` are
+- `equal()` - Deep comparison function, where `actual` and `expected` are
compared deeply, and if they vary, `equal` returns `false`.
- `assert()` - Expects a boolean value, throws if the value is `false`.
- `assertEquals()` - Uses the `equal` comparison and throws if the `actual` and