From 9669830a8644c71f43bdd5509141c4f9284a541f Mon Sep 17 00:00:00 2001 From: Kyle Lutz Date: Wed, 12 Mar 2014 09:52:02 -0700 Subject: [PATCH] Fix documentation for shared_future example --- doc/futures.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/futures.qbk b/doc/futures.qbk index 4bdd4828..5208ff87 100755 --- a/doc/futures.qbk +++ b/doc/futures.qbk @@ -308,7 +308,7 @@ The second `get()` call in the following example is undefined. use3( ftr.get() ); // second use is undefined } -Using a `shared_mutex` solves the issue +Using a `shared_future` solves the issue void good_second_use( type arg ) {