Prechádzať zdrojové kódy

error strings should not end with punctuation.

Bruce Marriner 9 rokov pred
rodič
commit
546cd85303
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      wsapi.go

+ 1 - 1
wsapi.go

@@ -666,7 +666,7 @@ type voiceChannelJoinOp struct {
 func (s *Session) ChannelVoiceJoin(gID, cID string, mute, deaf bool) (err error) {
 
 	if s.wsConn == nil {
-		return fmt.Errorf("no websocket connection exists.")
+		return fmt.Errorf("no websocket connection exists")
 	}
 
 	// Create new voice{} struct if one does not exist.