aboutsummaryrefslogtreecommitdiff
path: root/unsafe.go
diff options
context:
space:
mode:
Diffstat (limited to 'unsafe.go')
-rw-r--r--unsafe.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsafe.go b/unsafe.go
index ed1e56c..dc6cb97 100644
--- a/unsafe.go
+++ b/unsafe.go
@@ -5,7 +5,7 @@ package main
import "unsafe"
-// Converts a string to a byte slice without copying the string.
+// stringToBytes converts a string to a byte slice without copying the string.
// Memory is borrowed from the string.
// The resulting byte slice must not be modified in any form.
func stringToBytes(s string) (bytes []byte) {