diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2020-11-07 13:02:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-07 11:02:55 +0100 |
commit | 3bb5257e6d9720f0b0bd6fcd7b02c446c1b470c6 (patch) | |
tree | edc0f28d8d9227b00cf58d8a35dda6bf1344f8c8 /docs/getting_started | |
parent | 88c4d3145b1e964387be487090bb6ec0a572b90f (diff) |
docs: fix code highlighting in typescript.md (#8277)
Diffstat (limited to 'docs/getting_started')
-rw-r--r-- | docs/getting_started/typescript.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/getting_started/typescript.md b/docs/getting_started/typescript.md index 47f7505b4..972d42713 100644 --- a/docs/getting_started/typescript.md +++ b/docs/getting_started/typescript.md @@ -9,7 +9,7 @@ no "magical" module resolution. Instead, imported modules are specified as files (including extensions) or fully qualified URL imports. Typescript modules can be directly imported. E.g. -``` +```ts import { Response } from "https://deno.land/std@$STD_VERSION/http/server.ts"; import { queue } from "./collections.ts"; ``` |