doc: fix typo in do_until()

This commit is contained in:
Avi Kivity
2015-06-01 11:37:42 +03:00
committed by Calle Wilund
parent d91875d20a
commit 8bbfa540e5

View File

@@ -133,7 +133,7 @@ void do_until_continued(StopCondition&& stop_cond, AsyncAction&& action, promise
/// \param stop_cond a callable taking no arguments, returning a boolean that
/// evalutes to true when you don't want to call \c action
/// any longer
/// \param action a callable taking to arguments, returning a future<>. Will
/// \param action a callable taking no arguments, returning a future<>. Will
/// be called again as soon as the future resolves, unless the
/// future fails, or \c stop_cond returns \c true.
/// \return a ready future if we stopped successfully, or a failed future if