Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary backtick #1251

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/tcp-echo-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @resource {https://docs.deno.com/api/deno/~/Deno.Conn#property_writable} Writable connection docs
* @group Network
*
* An echo server is a simple network application that listens for incoming connections and requests, and then repeats back any data it receives from clients.<br><br>To test this example, try sending data to it with <a href="https://en.wikipedia.org/wiki/Netcat">Netcat</a> (Linux/MacOS only). For example, in your terminal run: <code>echo "Hello, Deno!" | nc localhost 8080`</code>
* An echo server is a simple network application that listens for incoming connections and requests, and then repeats back any data it receives from clients.<br><br>To test this example, try sending data to it with <a href="https://en.wikipedia.org/wiki/Netcat">Netcat</a> (Linux/MacOS only). For example, in your terminal run: <code>echo "Hello, Deno!" | nc localhost 8080</code>
*/

// Create a TCP listener that listens on port 8080. Log that it is listening.
Expand Down
Loading