summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChayim Refael Friedman <chayimfr@gmail.com>2020-08-03 17:53:18 +0300
committerGitHub <noreply@github.com>2020-08-03 10:53:18 -0400
commite9d713c007afd31e22c9edf2b256197ed12336f2 (patch)
treef62931bba0bbd985e5c5f6b32fea97b1fcab7c51
parent39693094f14ecba128c8fe9c6a1b8c0aba82fdec (diff)
typo (#6937)
-rw-r--r--docs/contributing/style_guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contributing/style_guide.md b/docs/contributing/style_guide.md
index 7e68b04e4..8de0d228f 100644
--- a/docs/contributing/style_guide.md
+++ b/docs/contributing/style_guide.md
@@ -281,7 +281,7 @@ Example of test:
import { assertEquals } from "https://deno.land/std@$STD_VERSION/testing/asserts.ts";
import { foo } from "./mod.ts";
-Deno.test("myTestFunction" function() {
+Deno.test("myTestFunction", function () {
assertEquals(foo(), { bar: "bar" });
});
```