Skip to content

Commit

Permalink
fix: respond with "Hello, world!"
Browse files Browse the repository at this point in the history
  • Loading branch information
francisfuzz authored Sep 17, 2024
1 parent 995b72d commit beb2ce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/hello-world/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const server = createServer((request, response) => {
return response.end("ok");
}

response.write(createTextEvent("Hello, Francis Fuzz!"));
response.write(createTextEvent("Hello, world!"));
response.end(createDoneEvent());
});

Expand Down

0 comments on commit beb2ce4

Please sign in to comment.