From 04b625054a6a3697995147762fbb0d7ecceddeae Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Fri, 5 Oct 2018 19:35:03 +0200 Subject: readme: fix formatting error --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 572b0f481..a953c7601 100644 --- a/README.md +++ b/README.md @@ -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.) -- cgit v1.2.3