fix typos

This commit is contained in:
Cong Ding
2013-07-16 01:04:41 +02:00
parent c9561cacf0
commit fd1d908e79
4 changed files with 8 additions and 8 deletions

View File

@ -15,11 +15,11 @@ import (
//--------------------------------------
var storeMsg chan string
// Help to send msg from stroe to webHub
// Help to send msg from store to webHub
func webHelper() {
storeMsg = make(chan string)
for {
// transfere the new msg to webHub
// transfer the new msg to webHub
web.Hub().Send(<-storeMsg)
}
}