remove apparently-superfluous extra parens from types

This commit is contained in:
Tim Chevalier 2013-01-02 14:04:29 -08:00
parent ae69c2fc7d
commit 0d4cf3ed72

View File

@ -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.