mirror of
https://github.com/m1k1o/neko.git
synced 2025-08-02 00:10:07 +02:00
A huge amount more spelling corrections
This commit is contained in:
parent
addead5005
commit
b31036147d
18 changed files with 69 additions and 69 deletions
|
@ -27,7 +27,7 @@ type SessionManager struct {
|
|||
emmiter events.EventEmmiter
|
||||
}
|
||||
|
||||
func (manager *SessionManager) New(id string, admin bool, socket types.WebScoket) types.Session {
|
||||
func (manager *SessionManager) New(id string, admin bool, socket types.WebSocket) types.Session {
|
||||
session := &Session{
|
||||
id: id,
|
||||
admin: admin,
|
||||
|
@ -112,7 +112,7 @@ func (manager *SessionManager) Clear() error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (manager *SessionManager) Brodcast(v interface{}, exclude interface{}) error {
|
||||
func (manager *SessionManager) Broadcast(v interface{}, exclude interface{}) error {
|
||||
for id, session := range manager.members {
|
||||
if !session.connected {
|
||||
continue
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue