remove apparently-superfluous extra parens from types
This commit is contained in:
parent
ae69c2fc7d
commit
0d4cf3ed72
@ -37,9 +37,9 @@ use core::vec;
|
||||
/// The SHA-1 interface
|
||||
trait Sha1 {
|
||||
/// Provide message input as bytes
|
||||
fn input((&[const u8]));
|
||||
fn input(&[const u8]);
|
||||
/// Provide message input as string
|
||||
fn input_str((&str));
|
||||
fn input_str(&str);
|
||||
/**
|
||||
* Read the digest as a vector of 20 bytes. After calling this no further
|
||||
* input may be provided until reset is called.
|
||||
|
Loading…
Reference in New Issue
Block a user