summaryrefslogtreecommitdiff
path: root/std/manual.md
diff options
context:
space:
mode:
Diffstat (limited to 'std/manual.md')
-rw-r--r--std/manual.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/manual.md b/std/manual.md
index 70610e19f..bd64cb409 100644
--- a/std/manual.md
+++ b/std/manual.md
@@ -491,11 +491,11 @@ uses a URL to import an assertion library:
```ts
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
-Deno.test(function t1() {
+Deno.test("t1", function () {
assertEquals("hello", "hello");
});
-Deno.test(function t2() {
+Deno.test("t2", function () {
assertEquals("world", "world");
});
```