diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-10-27 17:28:10 -0400 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2019-10-28 13:51:13 +0000 |
commit | 7fa3dd2881be537ec6144850064ad1419dc12f3e (patch) | |
tree | 7fa013d6e23f16f73b0ca97628c1374a009b49bd /docs/gettingstarted/developers/vpp_api_module.rst | |
parent | 3b5e222f8a4d0ccd4ec4eace2551491f13de85d9 (diff) |
docs: cleanup typos on readthrough
Type: style
Change-Id: I3b15035ea6c13cd1ca3cdc9dfa9b10a6e1be9880
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'docs/gettingstarted/developers/vpp_api_module.rst')
-rw-r--r-- | docs/gettingstarted/developers/vpp_api_module.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/gettingstarted/developers/vpp_api_module.rst b/docs/gettingstarted/developers/vpp_api_module.rst index 261c8691dc2..3cdea524e4e 100644 --- a/docs/gettingstarted/developers/vpp_api_module.rst +++ b/docs/gettingstarted/developers/vpp_api_module.rst @@ -56,7 +56,7 @@ _______ **Low-level API** -Refer to inline API documentation in doxygen format in vapi.h header for description of functions. It's recommened to use the safer, high-level API provided by specialized headers (e.g. vpe.api.vapi.h or vpe.api.vapi.hpp). +Refer to inline API documentation in doxygen format in vapi.h header for description of functions. It's recommended to use the safer, high-level API provided by specialized headers (e.g. vpe.api.vapi.h or vpe.api.vapi.hpp). **C high-level API** @@ -113,7 +113,7 @@ _________ *Create a Connection and execute the appropriate Request to subscribe to events (e.g. Want_stats)* -#. Create an Event_registration with a template argument being the type of event you are insterested in. +#. Create an Event_registration with a template argument being the type of event you are interested in. #. Call dispatch() or wait_for_response() to wait for the event. A callback will be called when an event occurs (if passed to Event_registration() constructor). Alternatively, read the result set. .. note:: |