diff --git a/examples/hello-world/index.js b/examples/hello-world/index.js index da6ecc6..8c56007 100644 --- a/examples/hello-world/index.js +++ b/examples/hello-world/index.js @@ -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()); });