소스 검색

Merge branch 'bulk-delete' of https://github.com/VagantemNumen/discordgo into bulk-delete

VagantemNumen 8 년 전
부모
커밋
d1dd35b677
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      restapi.go

+ 1 - 1
restapi.go

@@ -1111,7 +1111,7 @@ func (s *Session) ChannelMessageDelete(channelID, messageID string) (err error)
 // If only one messageID is in the slice call channelMessageDelete funciton.
 // If the slice is empty do nothing.
 // channelID : The ID of the channel for the messages to delete.
-// messages  : The IDs of the messages to be deleted. A slice of string IDs. Maximum 100.
+// messages  : The IDs of the messages to be deleted. A slice of string IDs.
 func (s *Session) ChannelMessagesBulkDelete(channelID string, messages []string) (err error) {
 
 	if len(messages) == 0 {