diff options
| author | Jeff Olson <olson.jeffery@gmail.com> | 2012-09-07 18:52:35 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-09-08 14:22:16 -0700 |
| commit | 2508c2427652528e65cbc5d613fee09af498acbc (patch) | |
| tree | f6d4d5215f62f095484814aa0539231ef3e90125 | |
| parent | 8e86cd0aa7569411e44b782462744a4aad9bcb92 (diff) | |
| download | rust-2508c2427652528e65cbc5d613fee09af498acbc.tar.gz rust-2508c2427652528e65cbc5d613fee09af498acbc.zip | |
core: fix separator for Future<A> property
| -rw-r--r-- | src/libcore/future.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/future.rs b/src/libcore/future.rs index 99fc9ce4d37..b1d73dd9f5a 100644 --- a/src/libcore/future.rs +++ b/src/libcore/future.rs @@ -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! |
