diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-01-13 15:52:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-13 15:52:42 -0500 |
commit | b1c59d7231102b8f904cdfb6a621e306af301b9f (patch) | |
tree | 3e193eaa898f2a7f0b0bd7e7cd9c5d471e9027bc | |
parent | 8ae178e9ce90cfabd19844ff755e5e68d2126a35 (diff) |
Fix links on website (#1511)
-rw-r--r-- | website/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/website/index.html b/website/index.html index 7adf1ad02..ada1e5601 100644 --- a/website/index.html +++ b/website/index.html @@ -20,10 +20,10 @@ </tr> <tr> <td> - <img src="https://travis-ci.com/denoland/deno.svg?branch=master"/> + <a href="https://travis-ci.com/denoland/deno"><img src="https://travis-ci.com/denoland/deno.svg?branch=master"/></a> </td> <td> - <img src="https://ci.appveyor.com/api/projects/status/yel7wtcqwoy0to8x/branch/master?svg=true"/> + <a href="https://ci.appveyor.com/project/deno/deno"><img src="https://ci.appveyor.com/api/projects/status/yel7wtcqwoy0to8x/branch/master?svg=true"/></a> </td> </tr> </table> @@ -56,13 +56,13 @@ Try a Deno program. Install by bash alias. This one serves a local directory in HTTP. <pre> alias file_server="deno \ - https://deno.land/x/net/file_server.ts --allow-net" + https://deno.land/x/http/file_server.ts --allow-net" </pre> Run it: <pre> % file_server . -Downloading https://deno.land/x/net/file_server.ts... +Downloading https://deno.land/x/http/file_server.ts... [...] HTTP server listening on http://0.0.0.0:4500/ </pre> |