From 2599153bbcadbfcad5ac2b03d8923bc1bcfb5af7 Mon Sep 17 00:00:00 2001
From: shiomiyan <35842766+shiomiyan@users.noreply.github.com>
Date: Wed, 11 Dec 2024 17:19:51 +0900
Subject: [PATCH] Remove unnecessary backtick (#1251)
---
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.