File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -10,20 +10,20 @@ use std::fmt::{Display, Formatter};
10
10
/// information regarding each error code and corresponding use-cases.
11
11
#[ derive( Debug ) ]
12
12
pub enum VssError {
13
- /// Refer [`ErrorCode::NoSuchKeyException`].
13
+ /// Please refer to [`ErrorCode::NoSuchKeyException`].
14
14
NoSuchKeyError ( String ) ,
15
15
16
- /// Refer [`ErrorCode::InvalidRequestException`].
16
+ /// Please refer to [`ErrorCode::InvalidRequestException`].
17
17
InvalidRequestError ( String ) ,
18
18
19
- /// Refer [`ErrorCode::ConflictException`].
19
+ /// Please refer to [`ErrorCode::ConflictException`].
20
20
ConflictError ( String ) ,
21
21
22
- /// Refer [`ErrorCode::InternalServerException`].
22
+ /// Please refer to [`ErrorCode::InternalServerException`].
23
23
InternalServerError ( String ) ,
24
24
25
- // There is an unknown error, it could be a client-side bug, unrecognized error-code, network error
26
- // or something else.
25
+ /// There is an unknown error, it could be a client-side bug, unrecognized error-code, network error
26
+ /// or something else.
27
27
InternalError ( String ) ,
28
28
}
29
29
You can’t perform that action at this time.
0 commit comments