Skip to content

Commit 0d4cf3e

Browse files
committed
remove apparently-superfluous extra parens from types
1 parent ae69c2f commit 0d4cf3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/sha1.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ use core::vec;
3737
/// The SHA-1 interface
3838
trait Sha1 {
3939
/// Provide message input as bytes
40-
fn input((&[const u8]));
40+
fn input(&[const u8]);
4141
/// Provide message input as string
42-
fn input_str((&str));
42+
fn input_str(&str);
4343
/**
4444
* Read the digest as a vector of 20 bytes. After calling this no further
4545
* input may be provided until reset is called.

0 commit comments

Comments
 (0)