edenapi_server: fix capitalization in serialization errors

Summary: Fix the capitalization in the error message to match the other variants.

Reviewed By: singhsrb

Differential Revision: D22078125

fbshipit-source-id: 4a1de0111fa4dceea2d401c47ef145669a3cc6f5
This commit is contained in:
Arun Kulshreshtha 2020-06-16 20:35:49 -07:00 committed by Facebook GitHub Bot
parent 52e516864d
commit b0e795886f

View File

@ -46,9 +46,9 @@ pub enum ErrorKind {
InvalidPath(Vec<u8>),
#[error("Unexpected empty path")]
UnexpectedEmptyPath,
#[error("Serialization Failed")]
#[error("Serialization failed")]
SerializationFailed,
#[error("Deserialization Failed")]
#[error("Deserialization failed")]
DeserializationFailed,
#[error("Failed to fetch data for key: {0:?}")]
DataFetchFailed(Key),