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";