fixed spelling typos

This commit is contained in:
Roland Osborne 2022-07-22 12:33:52 -07:00
parent 633ef66244
commit 9e75a55d21
5 changed files with 6 additions and 3 deletions

View File

@ -3,6 +3,7 @@ module databag
go 1.17
require (
github.com/client9/misspell v0.3.4 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/httpsnoop v1.0.1 // indirect
github.com/google/uuid v1.3.0 // indirect

View File

@ -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/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=

View File

@ -151,7 +151,7 @@ func SetProfileNotification(account *store.Account) {
}
// 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)
func SetContactArticleNotification(account *store.Account, card *store.Card) {

View File

@ -775,7 +775,7 @@ func (a *TestApp) Connect(token string) error {
// read revision update
for {
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 {
return errors.New("invalid status data type")

View File

@ -412,7 +412,7 @@ func monitorStatus(ws *websocket.Conn, contact *testContact) {
// read revision update
for {
if dataType, data, err = ws.ReadMessage(); err != nil {
LogMsg("failed to read status conenction")
LogMsg("failed to read status connection")
return
}
if dataType != websocket.TextMessage {