diff options
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`]. /// |