2
0
mirror of https://github.com/boostorg/asio.git synced 2026-01-19 04:02:09 +00:00

Fix doc typos.

This commit is contained in:
Christopher Kohlhoff
2025-10-30 20:41:37 +11:00
parent 6f4232ffcb
commit c802a01950
2 changed files with 3 additions and 3 deletions

View File

@@ -423,7 +423,7 @@ public:
/// Request the inline_or_executor to invoke the given function object.
/**
* This function is used to ask the inline_or_executor to execute the given
* function object. The function object will be executed inside this functon.
* function object. The function object will be executed inside this function.
*
* @param f The function object to be called. The executor will make
* a copy of the handler object as required. The function signature of the
@@ -444,7 +444,7 @@ public:
/**
* This function is used to ask the executor to execute the given function
* object. The function object will never be executed inside this function.
* Instead, it will be scheduled by the underlying executor's defer function.
* Instead, it will be scheduled by the underlying executor's post function.
*
* @param f The function object to be called. The executor will make
* a copy of the handler object as required. The function signature of the

View File

@@ -297,7 +297,7 @@ public:
/**
* This function is used to ask the executor to execute the given function
* object. The function object will never be executed inside this function.
* Instead, it will be scheduled by the underlying executor's defer function.
* Instead, it will be scheduled by the underlying executor's post function.
*
* @param f The function object to be called. The executor will make
* a copy of the handler object as required. The function signature of the