Fix typos in spawn() documentation.

This commit is contained in:
Christopher Kohlhoff 2013-10-27 08:51:50 +11:00
parent 7d86faf110
commit 88af15e102
2 changed files with 4 additions and 4 deletions

View File

@ -130,7 +130,7 @@ private:
};
#if defined(GENERATING_DOCUMENTATION)
/// Context object the represents the currently executing coroutine.
/// Context object that represents the currently executing coroutine.
typedef basic_yield_context<unspecified> yield_context;
#else // defined(GENERATING_DOCUMENTATION)
typedef basic_yield_context<
@ -217,7 +217,7 @@ void spawn(basic_yield_context<Handler> ctx,
const boost::coroutines::attributes& attributes
= boost::coroutines::attributes());
/// Start a new stackful coroutine that executes in the contex of a strand.
/// Start a new stackful coroutine that executes in the context of a strand.
/**
* This function is used to launch a new coroutine.
*

View File

@ -88739,7 +88739,7 @@ This function is used to launch a new coroutine.
[section:overload3 spawn (3 of 4 overloads)]
Start a new stackful coroutine that executes in the contex of a strand.
Start a new stackful coroutine that executes in the context of a strand.
template<
@ -106138,7 +106138,7 @@ The number of bytes written. If an error occurs, returns the total number of byt
[section:yield_context yield_context]
[indexterm1 yield_context]
Context object the represents the currently executing coroutine.
Context object that represents the currently executing coroutine.
typedef basic_yield_context< unspecified > yield_context;