diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-04-25 15:53:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-25 10:53:26 -0400 |
commit | b33685e94bb8edbbaabd67a01bff429bf4e49168 (patch) | |
tree | 13a14746043442ff2fa8a66e4523943d0a025b9a /cli/js/internals.ts | |
parent | 0c47cd67850e4c195212c8edfcb3a62b8435ed3a (diff) |
fix(cli/js/symbols): Update symbol descriptions (#4878)
Don't use Symbol.for() to define Deno.symbols.customInspect.
Diffstat (limited to 'cli/js/internals.ts')
-rw-r--r-- | cli/js/internals.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/internals.ts b/cli/js/internals.ts index 174e9a0d4..a675c5d7f 100644 --- a/cli/js/internals.ts +++ b/cli/js/internals.ts @@ -1,5 +1,5 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -export const internalSymbol = Symbol("Deno.internal"); +export const internalSymbol = Symbol("Deno.symbols.internal"); // The object where all the internal fields for testing will be living. // eslint-disable-next-line @typescript-eslint/no-explicit-any |