aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-10-25 19:10:56 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-10-25 19:10:56 +0200
commite532f01fc3028ee8d766a692651243661b2769f8 (patch)
tree140d833a1a7f3eb3ed31c9be0e1327d26ff66c3f /README.md
parente9205ca171ed794ac18dcdec40578955a64361f3 (diff)
Formating
Change-Id: I2b805a60b67db1a72b429093256999673e2c3964 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index c97874d..79a218d 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ git submodule add git@github.com:fulup-bzh/ctl-utilities
3) Declare your controller config section in your binding
```
// CtlSectionT syntax:
-// key: "section name in config file"
+// key: "section name in config file"
// loadCB: callback to process section
// handle: a void* pass to callback when processing section
static CtlSectionT ctlSections[]= {
@@ -43,10 +43,10 @@ static CtlSectionT ctlSections[]= {
if (!dirList) dirList=CONTROL_CONFIG_PATH;
ctlConfig = CtlConfigLoad(dirList, ctlSections);
- if (!ctlConfig) goto OnErrorExit;
+ if (!ctlConfig) goto OnErrorExit;
```
-4) Exec controller config during binding init
+4) Exec controller config during binding init
```
int err = CtlConfigExec (ctlConfig);
```