From 993277e2c6c842b3344b486eb934c1bcb1156aed Mon Sep 17 00:00:00 2001 From: Li Xiaoming Date: Mon, 9 Sep 2019 13:31:26 +0800 Subject: docs: Fix markdown syntax 1) Fenced code blocks's keyword "```" should be placed in row 0, or markdown interpreter will not recognize it; 2) Add blank line between header and content to produce line break. Bug-AGL: SPEC-2714 Change-Id: I535a5b906df1b9839befa45bd37e921686cb59ae Signed-off-by: Li Xiaoming --- docs/Reference/1_BindingAssertFunctions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/Reference/1_BindingAssertFunctions.md') diff --git a/docs/Reference/1_BindingAssertFunctions.md b/docs/Reference/1_BindingAssertFunctions.md index a007875..5d63d2c 100644 --- a/docs/Reference/1_BindingAssertFunctions.md +++ b/docs/Reference/1_BindingAssertFunctions.md @@ -60,11 +60,11 @@ **_AFT.addEventToMonitor** function. The table has to have this format: - ```lua + ```lua eventGrp = {["api/event_name_1"]=1,["api/event_name_2"]=2,["api/event_name_3"]=5} - ``` + ``` As you can see, in the table, event names are table keys and the value stored are the number of time that the events have to be received. Check if events has been correctly received in time (timeout in µs). - An event name use the application framework naming scheme: **api/event_name**. \ No newline at end of file + An event name use the application framework naming scheme: **api/event_name**. -- cgit 1.2.3-korg