diff options
| author | mei <[email protected]> | 2017-06-27 20:37:30 -0700 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2017-06-27 20:37:59 -0700 |
| commit | f05efce7af0cb7020e7da08c7ca58fa6f786d4ef (patch) | |
| tree | f421e905cb9c49c695b7ff2aa0468ddb810e537d /src/model/guild/mod.rs | |
| parent | Add missing ModelError variant in description impl (diff) | |
| download | serenity-f05efce7af0cb7020e7da08c7ca58fa6f786d4ef.tar.xz serenity-f05efce7af0cb7020e7da08c7ca58fa6f786d4ef.zip | |
Docs fixes
Diffstat (limited to 'src/model/guild/mod.rs')
| -rw-r--r-- | src/model/guild/mod.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/model/guild/mod.rs b/src/model/guild/mod.rs index fced129..5c664f7 100644 --- a/src/model/guild/mod.rs +++ b/src/model/guild/mod.rs @@ -342,7 +342,6 @@ impl Guild { /// if the current user does not have permission to perform bans. /// /// [`ModelError::InvalidPermissions`]: enum.ModelError.html#variant.InvalidPermissions - /// [`Context::create_role`]: ../client/struct.Context.html#method.create_role /// [`Role`]: struct.Role.html /// [Manage Roles]: permissions/constant.MANAGE_ROLES.html pub fn create_role<F>(&self, f: F) -> Result<Role> @@ -446,7 +445,6 @@ impl Guild { /// if the current user does not have permission to perform bans. /// /// [`ModelError::InvalidPermissions`]: enum.ModelError.html#variant.InvalidPermissions - /// [`Context::edit_guild`]: ../client/struct.Context.html#method.edit_guild /// [Manage Guild]: permissions/constant.MANAGE_GUILD.html pub fn edit<F>(&mut self, f: F) -> Result<()> where F: FnOnce(EditGuild) -> EditGuild { |