diff --git a/community/samples/serving/helloworld-deno/README.md b/community/samples/serving/helloworld-deno/README.md index fa1329d75..d134d3d89 100644 --- a/community/samples/serving/helloworld-deno/README.md +++ b/community/samples/serving/helloworld-deno/README.md @@ -29,7 +29,7 @@ cd knative-docs/docs/serving/samples/hello-world/helloworld-deno 1. Create a new file named `deps.ts` and paste the following script: ```ts - export { serve } from "https://deno.land/std@v1.0.0-rc2/http/server.ts"; + export { serve } from "https://deno.land/std@std@0.50.0/http/server.ts"; ``` 1. Create a new file named `main.ts` and paste the following script: diff --git a/community/samples/serving/helloworld-deno/deps.ts b/community/samples/serving/helloworld-deno/deps.ts index 3005efba3..fa3e0d9d8 100644 --- a/community/samples/serving/helloworld-deno/deps.ts +++ b/community/samples/serving/helloworld-deno/deps.ts @@ -1 +1 @@ -export { serve } from "https://deno.land/std@v1.0.0-rc2/http/server.ts"; +export { serve } from "https://deno.land/std@0.50.0/http/server.ts";