aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Holmes <mike.holmes@linaro.org>2015-06-04 13:42:15 -0400
committerMaxim Uvarov <maxim.uvarov@linaro.org>2015-06-05 11:27:10 +0300
commitf47fb165c0e06f2bf446cefb6c69e690c091acfb (patch)
treefe08d3c94bd117b1bd5d123be5fe93486379f71e /doc
parent1da1a0d885406743dde1a53d13cd1e5df4c3d77e (diff)
codespell: fix spelling
Signed-off-by: Mike Holmes <mike.holmes@linaro.org> Reviewed-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/api_guide_lines.dox4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api_guide_lines.dox b/doc/api_guide_lines.dox
index 0832caea0..f3f7799cb 100644
--- a/doc/api_guide_lines.dox
+++ b/doc/api_guide_lines.dox
@@ -90,7 +90,7 @@ An api with "is" or "has" are both considered @ref boolean questions. They can o
An example might be a packet interface, you might want to know if it is in promiscuous mode.
@code odp_bool_t state = odp_pktio_is_promiscuous(pktio handle) @endcode
-In addtion you might want to know if it has the ability to be in promiscuous mode.
+In addition you might want to know if it has the ability to be in promiscuous mode.
@code odp_bool_t state = odp_pktio_has_promiscuous(pktio handle) @endcode
Another case might be if a packet has a vlan flag set
@@ -150,7 +150,7 @@ When an interface is defined in a header file and is intended to to be reused in
- All the required definitions for the API are to use an underscore, this includes MACROS, typedefs, enums and function names.
@subsection variables Declaring variables
-- Variables shall be declared at the begining of scope, for example :-
+- Variables shall be declared at the beginning of scope, for example :-
@code
int start_of_global_scope;