From 2508c2427652528e65cbc5d613fee09af498acbc Mon Sep 17 00:00:00 2001 From: Jeff Olson Date: Fri, 7 Sep 2012 18:52:35 -0700 Subject: [PATCH] core: fix separator for Future property --- src/libcore/future.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { - /*priv*/ mut state: FutureState; + /*priv*/ mut state: FutureState, // FIXME(#2829) -- futures should not be copyable, because they close // over fn~'s that have pipes and so forth within!