Iterate has one 't'

This commit is contained in:
Kevin Gillette 2013-12-12 11:57:18 -07:00
parent 0ab1322172
commit c147a86b15
1 changed files with 2 additions and 2 deletions

View File

@ -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() {