diff options
author | Trinity Pointard <trinity.pointard@gmail.com> | 2021-03-26 22:32:09 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-04-27 16:37:10 +0200 |
commit | 1e3df189d0dc37880219338c53607152ae0c87e0 (patch) | |
tree | db1a0ccea1b29c8916ed3246ff71ea66b3323bac /src/web/error.rs | |
parent | a2e1617d845e72c44b07f782801549f209ce14cc (diff) | |
download | garage-1e3df189d0dc37880219338c53607152ae0c87e0.tar.gz garage-1e3df189d0dc37880219338c53607152ae0c87e0.zip |
document api crate
Diffstat (limited to 'src/web/error.rs')
-rw-r--r-- | src/web/error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/error.rs b/src/web/error.rs index 6da86199..2b8aeebe 100644 --- a/src/web/error.rs +++ b/src/web/error.rs @@ -8,7 +8,7 @@ use garage_util::error::Error as GarageError; pub enum Error { /// An error received from the API crate #[error(display = "API error: {}", _0)] - ApiError(#[error(source)] garage_api::error::Error), + ApiError(#[error(source)] garage_api::Error), // Category: internal error /// Error internal to garage |