Skip to content

Commit

Permalink
🐛 Regenerate docs and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Androz2091 committed Jan 12, 2021
1 parent c27f1ca commit b52f54f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1834,7 +1834,7 @@ <h4 class="panel-title">
</tr>

</table></div>
<div class="panel-body">🆘 Example:<br><pre><code class="javascript">client.on("voiceChannelMute", (member, oldMuteType) => {
<div class="panel-body">🆘 Example:<br><pre><code class="javascript">client.on("voiceChannelUnmute", (member, oldMuteType) => {
console.log(member.user.tag+" become unmuted!");
});
</code></pre></div>
Expand Down
2 changes: 1 addition & 1 deletion tests/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ client.on("voiceChannelMute", (member, muteType) => {
console.log(member.user.tag+" become muted! (type: "+muteType);
});

client.on("voiceChannelMute", (member, oldMuteType) => {
client.on("voiceChannelUnmute", (member, oldMuteType) => {
console.log(member.user.tag+" become unmuted!");
});

Expand Down

0 comments on commit b52f54f

Please sign in to comment.