Skip to content

Commit 8ed80dc

Browse files
committed
fix nit docs
1 parent e36cf42 commit 8ed80dc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/error.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ use std::fmt::{Display, Formatter};
1010
/// information regarding each error code and corresponding use-cases.
1111
#[derive(Debug)]
1212
pub enum VssError {
13-
/// Refer [`ErrorCode::NoSuchKeyException`].
13+
/// Please refer to [`ErrorCode::NoSuchKeyException`].
1414
NoSuchKeyError(String),
1515

16-
/// Refer [`ErrorCode::InvalidRequestException`].
16+
/// Please refer to [`ErrorCode::InvalidRequestException`].
1717
InvalidRequestError(String),
1818

19-
/// Refer [`ErrorCode::ConflictException`].
19+
/// Please refer to [`ErrorCode::ConflictException`].
2020
ConflictError(String),
2121

22-
/// Refer [`ErrorCode::InternalServerException`].
22+
/// Please refer to [`ErrorCode::InternalServerException`].
2323
InternalServerError(String),
2424

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.
2727
InternalError(String),
2828
}
2929

0 commit comments

Comments
 (0)