Run rustfmt on src/errors.rs.

This commit is contained in:
Isis Lovecruft 2018-12-30 04:10:59 +00:00
parent 811793ba2b
commit ad49d31bbc
No known key found for this signature in database
GPG key ID: AB41313533E8E812

View file

@ -27,7 +27,10 @@ pub (crate) enum InternalError {
/// To use this, pass a string specifying the `name` of the type which is /// To use this, pass a string specifying the `name` of the type which is
/// returning the error, and the `length` in bytes which its constructor /// returning the error, and the `length` in bytes which its constructor
/// expects. /// expects.
BytesLengthError{ name: &'static str, length: usize }, BytesLengthError {
name: &'static str,
length: usize,
},
/// The verification equation wasn't satisfied /// The verification equation wasn't satisfied
VerifyError, VerifyError,
} }