diff options
| author | Austin Hellyer <[email protected]> | 2016-11-05 16:32:42 -0700 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-11-05 16:32:42 -0700 |
| commit | aab12ec36bda78121e1c4de4bc48822bd2b5d8a5 (patch) | |
| tree | 5d58844781983b6c43003838ad7a0fac0f03bdbe /src/model/permissions.rs | |
| parent | Support major parameters in ratelimits (diff) | |
| download | serenity-aab12ec36bda78121e1c4de4bc48822bd2b5d8a5.tar.xz serenity-aab12ec36bda78121e1c4de4bc48822bd2b5d8a5.zip | |
Fix doc links to enum variants
Most of the docs were linking to `enum.EnumName.html#VariantName.v`,
which should have been linking to
`enum.EnumName.html#variant.VariantName`.
Diffstat (limited to 'src/model/permissions.rs')
| -rw-r--r-- | src/model/permissions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/permissions.rs b/src/model/permissions.rs index 3bcf219..b14ab82 100644 --- a/src/model/permissions.rs +++ b/src/model/permissions.rs @@ -224,7 +224,7 @@ bitflags! { /// If this is disabled, then [`Member`]s must use push-to-talk. /// /// [`Member`]: ../struct.Member.html - /// [voice]: ../enum.ChannelType.html#Voice.v + /// [voice]: ../enum.ChannelType.html#variant.Voice const USE_VAD = 1 << 25, /// Allows members to change their own nickname in the guild. const CHANGE_NICKNAME = 1 << 26, |