$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r84569 - website/public_html/live/feed/history
From: chris_at_[hidden]
Date: 2013-05-31 00:40:20
Author: chris_kohlhoff
Date: 2013-05-31 00:40:20 EDT (Fri, 31 May 2013)
New Revision: 84569
URL: http://svn.boost.org/trac/boost/changeset/84569
Log:
Fix function name in code snippet.
Text files modified: 
   website/public_html/live/feed/history/boost_1_54_0.qbk |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: website/public_html/live/feed/history/boost_1_54_0.qbk
==============================================================================
--- website/public_html/live/feed/history/boost_1_54_0.qbk	(original)
+++ website/public_html/live/feed/history/boost_1_54_0.qbk	2013-05-31 00:40:20 EDT (Fri, 31 May 2013)
@@ -106,11 +106,11 @@
   * Added the `asio::spawn()` function, a high-level wrapper for running
     stackful coroutines, based on the Boost.Coroutine library. The `spawn()`
     function enables programs to implement asynchronous logic in a synchronous
-    manner. For example: `size_t n = my_socket.async_read(my_buffer, yield);`.
+    manner. For example: `size_t n = my_socket.async_read_some(my_buffer, yield);`.
   * Added the `asio::use_future` special value, which provides first-class
     support for returning a C++11 `std::future` from an asynchronous
     operation's initiating function. For example:
-    `future<size_t> = my_socket.async_read(my_buffer, asio::use_future);`.
+    `future<size_t> = my_socket.async_read_some(my_buffer, asio::use_future);`.
   * Promoted the stackless coroutine class and macros to be part of Asio's
     documented interface, rather than part of the HTTP server 4 example.
   * Added a new handler hook called `asio_handler_is_continuation`.