core: fix separator for Future<A> property

This commit is contained in:
Jeff Olson 2012-09-07 18:52:35 -07:00 committed by Brian Anderson
parent 8e86cd0aa7
commit 2508c24276

View file

@ -33,7 +33,7 @@ export future_pipe;
#[doc = "The future type"]
struct Future<A> {
/*priv*/ mut state: FutureState<A>;
/*priv*/ mut state: FutureState<A>,
// FIXME(#2829) -- futures should not be copyable, because they close
// over fn~'s that have pipes and so forth within!