Skip to content

Commit 32dbc68

Browse files
cargo fmt
1 parent 5650b88 commit 32dbc68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/segtree.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ where
4343
pub struct Sum<S>(Infallible, PhantomData<fn() -> S>);
4444
impl<S> Monoid for Sum<S>
4545
where
46-
S: Copy + Add<Output=S> + Zero,
46+
S: Copy + Add<Output = S> + Zero,
4747
{
4848
type S = S;
4949
fn identity() -> Self::S {
@@ -57,7 +57,7 @@ where
5757
pub struct Product<S>(Infallible, PhantomData<fn() -> S>);
5858
impl<S> Monoid for Product<S>
5959
where
60-
S: Copy + Mul<Output=S> + One,
60+
S: Copy + Mul<Output = S> + One,
6161
{
6262
type S = S;
6363
fn identity() -> Self::S {

0 commit comments

Comments
 (0)