mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-07 20:50:39 +00:00
Run rustfmt on src/errors.rs.
This commit is contained in:
parent
811793ba2b
commit
ad49d31bbc
1 changed files with 6 additions and 3 deletions
|
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue