From 5f70ab55f82fe79eab95b6c5b5e8f920ef242816 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Mon, 20 Feb 2017 01:58:56 +0000 Subject: [PATCH] Obsessive compulsive whitespace fix. --- src/field.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/field.rs b/src/field.rs index 0ef58c2..dc21ea3 100644 --- a/src/field.rs +++ b/src/field.rs @@ -711,7 +711,7 @@ impl FieldElement { /// XXX This returns an extra intermediate to save computation in /// finding inverses, at the cost of an extra copy when it's not /// used (e.g., when raising to (p-1)/2 or (p-5)/8). Good idea? - fn pow22501(&self) -> (FieldElement,FieldElement) { + fn pow22501(&self) -> (FieldElement, FieldElement) { // Instead of managing which temporary variables are used // for what, we define as many as we need and trust the // compiler to reuse stack space as appropriate.