diff options
author | Geert-Jan Zwiers <geertjanzwiers@protonmail.com> | 2022-08-27 21:20:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-27 21:20:25 +0200 |
commit | 7c4f57e8b091bc386242f83b5373e4bb33382012 (patch) | |
tree | c0bb88d0403dfa22fa3e27acd2d47574e9bcbfb1 /cli/dts/lib.deno.unstable.d.ts | |
parent | dbfaaddb4f1832951db4b1234a06606c942d48f9 (diff) |
fix(ext/flash): add missing backticks in server docs (#15644)
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 2f6a197bc..1ef3508a5 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -1329,6 +1329,7 @@ declare namespace Deno { * const cert = "-----BEGIN CERTIFICATE-----\n...\n-----END CERTIFICATE-----\n"; * const key = "-----BEGIN PRIVATE KEY-----\n...\n-----END PRIVATE KEY-----\n"; * Deno.serve({ cert, key }, (_req) => new Response("Hello, world")); + * ``` * * @category HTTP Server */ |