Skip to content

Commit 2508c24

Browse files
olsonjefferybrson
authored andcommitted
core: fix separator for Future<A> property
1 parent 8e86cd0 commit 2508c24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/future.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export future_pipe;
3333

3434
#[doc = "The future type"]
3535
struct Future<A> {
36-
/*priv*/ mut state: FutureState<A>;
36+
/*priv*/ mut state: FutureState<A>,
3737

3838
// FIXME(#2829) -- futures should not be copyable, because they close
3939
// over fn~'s that have pipes and so forth within!

0 commit comments

Comments
 (0)