Fix a typo

Fix a typo in bytes.go
This commit is contained in:
Isaac 2020-08-25 17:55:53 +08:00 committed by GitHub
parent 243a8262fc
commit 588b40ffad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
package stack
// TwoBytes is a [8]byte which is always allocated on stack.
// TwoBytes is a [2]byte which is always allocated on stack.
//
//go:notinheap
type TwoBytes [2]byte