Skip to content

Commit 3a43da6

Browse files
Change position of newline
1 parent 93a2906 commit 3a43da6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/segtree.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ pub trait Monoid {
99
fn identity() -> Self::S;
1010
fn binary_operation(a: Self::S, b: Self::S) -> Self::S;
1111
}
12-
pub struct Max<S>(PhantomData<fn() -> S>);
1312

13+
pub struct Max<S>(PhantomData<fn() -> S>);
1414
// TODO We should not restrict to integral
1515
impl<S> Monoid for Max<S>
1616
where

0 commit comments

Comments
 (0)