From 2fff216491d0fea1476ed5d4d493d7a3ebec2432 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Fri, 21 Oct 2016 10:17:33 -0500 Subject: [PATCH] fix some trivial typos --- TODO.md | 2 +- core/src/pow/siphash.rs | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/TODO.md b/TODO.md index 4079e93871..9cf056193a 100644 --- a/TODO.md +++ b/TODO.md @@ -10,7 +10,7 @@ Grin is still an infant, much is left to be done and contributions are welcome. * Chain logic and related validation. * Efficient miner (as a distinct project). * User-friendly wallet (as a distinct project). - * Figure out if the rangeproofs can be eliminated under some cicrumstances while keeping security guarantes. + * Figure out if the rangeproofs can be eliminated under some cicrumstances while keeping security guarantees. * Website, logo design and all the cool stuff. Don't worry, we'll get there, with your help. diff --git a/core/src/pow/siphash.rs b/core/src/pow/siphash.rs index 90a40348af..8d1c148cd6 100644 --- a/core/src/pow/siphash.rs +++ b/core/src/pow/siphash.rs @@ -56,8 +56,7 @@ mod test { use super::*; /// Some test vectors hoisted from the Java implementation (adjusted from - /// the - /// fact that the Java impl uses a long, aka a signed 64 bits number). + /// the fact that the Java impl uses a long, aka a signed 64 bits number). #[test] fn hash_some() { assert_eq!(siphash24([1, 2, 3, 4], 10), 928382149599306901);