summaryrefslogtreecommitdiffstats
path: root/parser
diff options
context:
space:
mode:
Diffstat (limited to 'parser')
-rw-r--r--parser/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/parser/README.md b/parser/README.md
index 3bc48bc906..50d55e3d63 100644
--- a/parser/README.md
+++ b/parser/README.md
@@ -6,7 +6,7 @@ Usage
1. Define a structure that will be used to share user state across calls
1. Initialize the parser using `parser_init`
-2. Register keywords and assosiated callback function using `parser_add_keyword`
+2. Register keywords and associated callback function using `parser_add_keyword`
3. Register actions on the keywords
4. Start a loop until EOF
1. Fetch the next line using `parser_next`
@@ -79,11 +79,11 @@ Input
* PARSER_RC_ERROR -- Callback failed, exit
Output
-- The correspoding keyword and callback will be registered
+- The corresponding keyword and callback will be registered
Returns
- 0 maximum callbacks already registered for this keyword
-- > 0 which is the number of callbacks assosiated with this keyword.
+- > 0 which is the number of callbacks associated with this keyword.
----