diff options
| author | Austin Hellyer <[email protected]> | 2016-11-24 11:26:15 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-11-24 11:26:15 -0800 |
| commit | 290111a02f59f278374a482a8c8df12147ba4ea9 (patch) | |
| tree | a27137c29deb678557122119c882c84963d89604 /src/client/error.rs | |
| parent | Ignore WebSocketError::NoDataAvailable (diff) | |
| download | serenity-290111a02f59f278374a482a8c8df12147ba4ea9.tar.xz serenity-290111a02f59f278374a482a8c8df12147ba4ea9.zip | |
Rename guild structs to Guild and PartialGuild
Diffstat (limited to 'src/client/error.rs')
| -rw-r--r-- | src/client/error.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/error.rs b/src/client/error.rs index a016e92..76e0d2c 100644 --- a/src/client/error.rs +++ b/src/client/error.rs @@ -59,11 +59,11 @@ pub enum Error { DeleteMessageDaysAmount(u8), /// When there was an error retrieving the gateway URI from the REST API. Gateway, - /// An indication that a [guild][`LiveGuild`] could not be found by + /// An indication that a [guild][`Guild`] could not be found by /// [Id][`GuildId`] in the [`Cache`]. /// + /// [`Guild`]: ../model/struct.Guild.html /// [`GuildId`]: ../model/struct.GuildId.html - /// [`LiveGuild`]: ../model/struct.LiveGuild.html /// [`Cache`]: ../ext/cache/struct.Cache.html GuildNotFound, InvalidOpCode, |