fix(cli/js/symbols): Update symbol descriptions (#4878)

Don't use Symbol.for() to define Deno.symbols.customInspect.
This commit is contained in:
Nayeem Rahman 2020-04-25 15:53:26 +01:00 committed by GitHub
parent 0c47cd6785
commit b33685e94b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -954,7 +954,7 @@ export class Console {
}
}
export const customInspect = Symbol.for("Deno.customInspect");
export const customInspect = Symbol("Deno.symbols.customInspect");
export function inspect(
value: unknown,