Skip to content

Commit

Permalink
Fix hello world serve example (#112)
Browse files Browse the repository at this point in the history
Did not actually compile
  • Loading branch information
johnspurlock authored Sep 18, 2023
1 parent c0f5f7d commit e150825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/manual/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Create a file called `server.ts` in your terminal, and include the following
"Hello World" web server:

```ts title="server.ts"
Deno.serve(() => return new Response("Hello, world!"));
Deno.serve(() => new Response("Hello, world!"));
```

You can test that it works by running it with the command below:
Expand Down

0 comments on commit e150825

Please sign in to comment.