diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2021-01-02 15:17:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-02 10:17:01 -0500 |
commit | 62465ca4ee93826cd901b021a7e97b58adea5879 (patch) | |
tree | 74f5d5627903794300307fa64bd38a7692a1ce05 /std/testing | |
parent | 41a4a34aee57a4690e5c1b9ba54b27a7035bac37 (diff) |
fix(std): Don't use JSDoc syntax for browser-compatibility headers (#8960)
Diffstat (limited to 'std/testing')
-rw-r--r-- | std/testing/_diff.ts | 2 | ||||
-rw-r--r-- | std/testing/asserts.ts | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/std/testing/_diff.ts b/std/testing/_diff.ts index e6f631002..25b4cc977 100644 --- a/std/testing/_diff.ts +++ b/std/testing/_diff.ts @@ -1,5 +1,5 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -/** This module is browser compatible. */ +// This module is browser compatible. interface FarthestPoint { y: number; diff --git a/std/testing/asserts.ts b/std/testing/asserts.ts index 8548fb700..75a86a4c2 100644 --- a/std/testing/asserts.ts +++ b/std/testing/asserts.ts @@ -1,6 +1,6 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -/** This module is browser compatible. Do not rely on good formatting of values - * for AssertionError messages in browsers. */ +// This module is browser compatible. Do not rely on good formatting of values +// for AssertionError messages in browsers. import { bold, gray, green, red, stripColor, white } from "../fmt/colors.ts"; import { diff, DiffResult, DiffType } from "./_diff.ts"; |