From b909621c586bbc32356be4102ddaca704a2030d9 Mon Sep 17 00:00:00 2001 From: Tnze Date: Fri, 26 Nov 2021 18:43:20 +0800 Subject: [PATCH] fix comment --- nbt/rawmsg.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nbt/rawmsg.go b/nbt/rawmsg.go index ed46e75..072dcf6 100644 --- a/nbt/rawmsg.go +++ b/nbt/rawmsg.go @@ -9,7 +9,7 @@ import ( ) // RawMessage stores the raw binary data of NBT. -// This is usable if you wanna store an unknown NBT data and parse it later. +// This is usable if you want to store an unknown NBT data and parse it later. // Notice that this struct doesn't store the tag name. To convert RawMessage to valid NBT binary value: // Encoder.Encode(RawMessage, Name) = []byte{ Type (1 byte) | n (2 byte) | Name (n byte) | Data}. type RawMessage struct {