From 69d4d88b4f00b26112ad1d31fd551b032884f0d8 Mon Sep 17 00:00:00 2001 From: Rong Sen Ng Date: Mon, 24 Jun 2019 08:08:14 -0500 Subject: [PATCH] typo Original: https://github.com/denoland/deno_std/commit/ba4210cdb92e7f3d3e9471bf055231221b8be085 --- testing/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/README.md b/testing/README.md index 0445e344fc..3db9f58e23 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