Skip to content

Commit 38e210f

Browse files
authoredSep 18, 2024
docs(examples): respond with "Hello, world!" (#99)
<!-- This pull request template provides suggested sections for framing your work. You're welcome to change or remove headers if it doesn't fit your use case. :) --> ### What are you trying to accomplish? This PR updates the example message we write back to the client with "Hello, world!" rather than a variant of my name. 😉 ### What approach did you choose and why? One-liner change: targeted the text and updated it to match the file's intent. ### What should reviewers focus on? Nothing I haven't mentioned 😉
1 parent 7914799 commit 38e210f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎examples/hello-world/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const server = createServer((request, response) => {
1212
return response.end("ok");
1313
}
1414

15-
response.write(createTextEvent("Hello, Francis Fuzz!"));
15+
response.write(createTextEvent("Hello, world!"));
1616
response.end(createDoneEvent());
1717
});
1818

0 commit comments

Comments
 (0)
Failed to load comments.