From 01fd44ffd2cf6bb608b421c622202cf214571077 Mon Sep 17 00:00:00 2001 From: mandragore Date: Wed, 2 May 2018 01:57:24 +0300 Subject: [PATCH] Remove trailing whitespaces --- src/scalar.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scalar.rs b/src/scalar.rs index 300abf7..f1b03a7 100644 --- a/src/scalar.rs +++ b/src/scalar.rs @@ -566,7 +566,7 @@ impl Scalar { /// $$ /// k = \sum\_{i=0}\^m k\_i 2^i, /// $$ - /// and split the sum as + /// and split the sum as /// $$ /// k = \sum\_{i=0}^{w-1} k\_i 2^i + 2^w \sum\_{i=0} k\_{i+w} 2^i /// $$ @@ -607,7 +607,7 @@ impl Scalar { let width = 1 << w; let window_mask = width - 1; - + let mut pos = 0; let mut carry = 0; while pos < 256 {