diff options
| author | Bert Belder <bertbelder@gmail.com> | 2018-10-05 19:35:03 +0200 |
|---|---|---|
| committer | Bert Belder <bertbelder@gmail.com> | 2018-10-05 20:31:16 +0200 |
| commit | 04b625054a6a3697995147762fbb0d7ecceddeae (patch) | |
| tree | 7bddb0763a5adbf7273c30e7b7c765bdd74efb03 | |
| parent | c3bce178b88160920c68245c0da0ff5adb9564f0 (diff) | |
readme: fix formatting error
| -rw-r--r-- | README.md | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -12,7 +12,12 @@ - No `package.json`. No npm. Not explicitly compatible with Node. - 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 the code is run with the `--reload` flag. (So, this will still work on an airplane. See `~/.deno/src` for details on the cache.) |
