diff options
| author | Austin Hellyer <[email protected]> | 2016-11-25 08:33:15 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-11-25 08:33:15 -0800 |
| commit | e75f30b6dedf366d72d8d56b44fdbe191961fa72 (patch) | |
| tree | 46f2a507d0865078e352769729c756592368b88e /src/error.rs | |
| parent | Allow compiling with only either cache or methods (diff) | |
| download | serenity-e75f30b6dedf366d72d8d56b44fdbe191961fa72.tar.xz serenity-e75f30b6dedf366d72d8d56b44fdbe191961fa72.zip | |
Rename the `http` module to `rest`
Diffstat (limited to 'src/error.rs')
| -rw-r--r-- | src/error.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/error.rs b/src/error.rs index 8c442ec..6c534fb 100644 --- a/src/error.rs +++ b/src/error.rs @@ -34,10 +34,10 @@ pub type Result<T> = ::std::result::Result<T, Error>; /// [`Result`]: type.Result.html #[derive(Debug)] pub enum Error { - /// An [http] or [client] error. + /// A [rest] or [client] error. /// /// [client]: client/index.html - /// [http]: client/http/index.html + /// [rest]: client/rest/index.html Client(ClientError), /// An error with the WebSocket [`Gateway`]. /// |