mirror of
https://github.com/denoland/deno.git
synced 2025-01-08 15:19:40 -05:00
readme: fix formatting error
This commit is contained in:
parent
c3bce178b8
commit
04b625054a
1 changed files with 6 additions and 1 deletions
|
@ -12,7 +12,12 @@
|
||||||
- No `package.json`. No npm. Not explicitly compatible with Node.
|
- No `package.json`. No npm. Not explicitly compatible with Node.
|
||||||
|
|
||||||
- Imports reference source code URLs only.
|
- Imports reference source code URLs only.
|
||||||
`import { test } from "https://unpkg.com/deno_testing@0.0.5/testing.ts" import { log } from "./util.ts"`
|
|
||||||
|
```typescript
|
||||||
|
import { test } from "https://unpkg.com/deno_testing@0.0.5/testing.ts";
|
||||||
|
import { log } from "./util.ts";
|
||||||
|
```
|
||||||
|
|
||||||
Remote code is fetched and cached on first execution, and never updated until
|
Remote code is fetched and cached on first execution, and never updated until
|
||||||
the code is run with the `--reload` flag. (So, this will still work on an
|
the code is run with the `--reload` flag. (So, this will still work on an
|
||||||
airplane. See `~/.deno/src` for details on the cache.)
|
airplane. See `~/.deno/src` for details on the cache.)
|
||||||
|
|
Loading…
Reference in a new issue