diff options
Diffstat (limited to 'std/encoding')
-rw-r--r-- | std/encoding/ascii85.ts | 2 | ||||
-rw-r--r-- | std/encoding/csv_stringify.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/std/encoding/ascii85.ts b/std/encoding/ascii85.ts index cb2a3ec76..4efa98d7a 100644 --- a/std/encoding/ascii85.ts +++ b/std/encoding/ascii85.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. export type Ascii85Standard = "Adobe" | "btoa" | "RFC 1924" | "Z85"; /** diff --git a/std/encoding/csv_stringify.ts b/std/encoding/csv_stringify.ts index c968820dd..913cd3116 100644 --- a/std/encoding/csv_stringify.ts +++ b/std/encoding/csv_stringify.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. // Implements the CSV spec at https://tools.ietf.org/html/rfc4180 -/** This module is browser compatible. */ +// This module is browser compatible. const QUOTE = '"'; export const NEWLINE = "\r\n"; |