diff options
-rw-r--r-- | lib/byte.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/byte.go b/lib/byte.go index 744c0d7..149be2a 100644 --- a/lib/byte.go +++ b/lib/byte.go @@ -13,7 +13,8 @@ func ByteInBytes(b byte, bs []byte) bool { return false } -// Returns bytes that are common in the given array of array of bytes `bbytes`. +// Returns bytes that are common in the given array of array of bytes +// `bbytes`. func BytesInCommon(bbytes [][]byte) []byte { common := make([]byte, 0) switch l := len(bbytes); { |