aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar N0N1m3 <51912406+N0N1m3@users.noreply.github.com> 2023-02-24 01:13:37 +0300
committerGravatar GitHub <noreply@github.com> 2023-02-23 14:13:37 -0800
commite6e4e6b577337e8656d8b7996056912b9493e6f9 (patch)
tree45ae0378e2ab260702bd9eb1ca1becefe36fd411
parentdc634d3b302efc7e786b819dfd521c1f9dab1190 (diff)
downloadbun-e6e4e6b577337e8656d8b7996056912b9493e6f9.tar.gz
bun-e6e4e6b577337e8656d8b7996056912b9493e6f9.tar.zst
bun-e6e4e6b577337e8656d8b7996056912b9493e6f9.zip
Update README.md (#2145)
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 733678d75..f57ee6f36 100644
--- a/README.md
+++ b/README.md
@@ -2843,7 +2843,7 @@ Instead of having to allocate unique functions for each instance of a socket, we
How do you pass per-socket data to each socket object?
-`**data**` is a property on the `TCPSocket` & `TLSSocket` object that you can use to store per-socket data.
+`data` is a property on the `TCPSocket` & `TLSSocket` object that you can use to store per-socket data.
```ts
socket.data = { name: "Clienty McClientface" };