remove apparently-superfluous extra parens from types
This commit is contained in:
parent
ae69c2fc7d
commit
0d4cf3ed72
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue