From 568cc758005e02b9594c558304a3a2cce40304a7 Mon Sep 17 00:00:00 2001 From: finleyjb <73761790+finleyjb@users.noreply.github.com> Date: Sun, 5 Jan 2025 21:02:14 -0700 Subject: [PATCH] docs(expect,text): remove no-eval directives that appear to be unneccessary (#6333) --- expect/expect.ts | 2 +- text/unstable_slugify.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/expect/expect.ts b/expect/expect.ts index 2018c9851cf6..6fc4f2c8e2aa 100644 --- a/expect/expect.ts +++ b/expect/expect.ts @@ -608,7 +608,7 @@ expect.not = { * The last module added is the first module tested. * * @example - * ```ts no-eval + * ```ts * import { expect } from "@std/expect"; * import serializerAnsi from "npm:jest-snapshot-serializer-ansi"; * diff --git a/text/unstable_slugify.ts b/text/unstable_slugify.ts index 1491bad1d090..2e86480b97bf 100644 --- a/text/unstable_slugify.ts +++ b/text/unstable_slugify.ts @@ -86,7 +86,7 @@ export const NON_ASCII = /[^0-9a-zA-Z\-]/g; * ``` * * @example With transliteration using a third-party library - * ```ts no-eval no-assert + * ```ts no-assert * import { NON_ASCII, slugify } from "@std/text/unstable-slugify"; * // example third-party transliteration library * import transliterate from "npm:any-ascii";