Skip to content

Commit

Permalink
Remove unnecessary backtick (#1251)
Browse files Browse the repository at this point in the history
  • Loading branch information
shiomiyan authored Dec 11, 2024
1 parent c1c37c6 commit 2599153
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 2599153

Please sign in to comment.