From 24cfe29a8a4f4fe4dba16191508e44f98d92ed7f Mon Sep 17 00:00:00 2001 From: Erick Tryzelaar Date: Wed, 2 May 2012 17:37:32 -0700 Subject: [PATCH] std: Fix a typo --- src/libstd/sha1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/sha1.rs b/src/libstd/sha1.rs index dbb5a22f404..3f62c6764ed 100644 --- a/src/libstd/sha1.rs +++ b/src/libstd/sha1.rs @@ -1,7 +1,7 @@ #[doc =" An implementation of the SHA-1 cryptographic hash. -First create a `sha1` object using the `mk_sha1` constructor, then +First create a `sha1` object using the `sha1` constructor, then feed it input using the `input` or `input_str` methods, which may be called any number of times.