From 2461e07e2134c37a42162bf9231509247aefd23f Mon Sep 17 00:00:00 2001
From: shiomiyan <35842766+shiomiyan@users.noreply.github.com>
Date: Wed, 11 Dec 2024 15:45:26 +0900
Subject: [PATCH] Update tcp-echo-server.ts
remove unnecessary backtick
---
examples/tcp-echo-server.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/tcp-echo-server.ts b/examples/tcp-echo-server.ts
index c0b2d4cfa..4fcc48579 100644
--- a/examples/tcp-echo-server.ts
+++ b/examples/tcp-echo-server.ts
@@ -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.
To test this example, try sending data to it with Netcat (Linux/MacOS only). For example, in your terminal run: echo "Hello, Deno!" | nc localhost 8080`
+ * 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.
To test this example, try sending data to it with Netcat (Linux/MacOS only). For example, in your terminal run: echo "Hello, Deno!" | nc localhost 8080
*/
// Create a TCP listener that listens on port 8080. Log that it is listening.