Bläddra i källkod

Iterate has one 't'

Kevin Gillette 12 år sedan
förälder
incheckning
c147a86b15
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      bitlist.go

+ 2 - 2
bitlist.go

@@ -93,8 +93,8 @@ func (bl *BitList) GetBytes() []byte {
 	return result
 }
 
-// itterates through all bytes contained in the BitList
-func (bl *BitList) ItterateBytes() <-chan byte {
+// iterates through all bytes contained in the BitList
+func (bl *BitList) IterateBytes() <-chan byte {
 	res := make(chan byte)
 
 	go func() {