mirror of
https://github.com/balzack/databag.git
synced 2025-02-14 12:39:17 +00:00
fixed spelling typos
This commit is contained in:
parent
633ef66244
commit
9e75a55d21
@ -3,6 +3,7 @@ module databag
|
|||||||
go 1.17
|
go 1.17
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
github.com/client9/misspell v0.3.4 // indirect
|
||||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||||
github.com/felixge/httpsnoop v1.0.1 // indirect
|
github.com/felixge/httpsnoop v1.0.1 // indirect
|
||||||
github.com/google/uuid v1.3.0 // indirect
|
github.com/google/uuid v1.3.0 // indirect
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
github.com/client9/misspell v0.3.4 h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=
|
||||||
|
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
|
||||||
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
|
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
|
||||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
|
@ -151,7 +151,7 @@ func SetProfileNotification(account *store.Account) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// notify single card of article change:
|
// notify single card of article change:
|
||||||
// for each card of groups in updated artcile data
|
// for each card of groups in updated article data
|
||||||
// for each card of group set or cleared from article (does not update data)
|
// for each card of group set or cleared from article (does not update data)
|
||||||
func SetContactArticleNotification(account *store.Account, card *store.Card) {
|
func SetContactArticleNotification(account *store.Account, card *store.Card) {
|
||||||
|
|
||||||
|
@ -775,7 +775,7 @@ func (a *TestApp) Connect(token string) error {
|
|||||||
// read revision update
|
// read revision update
|
||||||
for {
|
for {
|
||||||
if dataType, data, err = ws.ReadMessage(); err != nil {
|
if dataType, data, err = ws.ReadMessage(); err != nil {
|
||||||
return errors.New("failed to read status conenction")
|
return errors.New("failed to read status connection")
|
||||||
}
|
}
|
||||||
if dataType != websocket.TextMessage {
|
if dataType != websocket.TextMessage {
|
||||||
return errors.New("invalid status data type")
|
return errors.New("invalid status data type")
|
||||||
|
@ -412,7 +412,7 @@ func monitorStatus(ws *websocket.Conn, contact *testContact) {
|
|||||||
// read revision update
|
// read revision update
|
||||||
for {
|
for {
|
||||||
if dataType, data, err = ws.ReadMessage(); err != nil {
|
if dataType, data, err = ws.ReadMessage(); err != nil {
|
||||||
LogMsg("failed to read status conenction")
|
LogMsg("failed to read status connection")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if dataType != websocket.TextMessage {
|
if dataType != websocket.TextMessage {
|
||||||
|
Loading…
Reference in New Issue
Block a user