Reformat.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 28 Nov 2010 19:30:55 +0000 (19:30 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 28 Nov 2010 19:30:55 +0000 (19:30 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4586 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/mware/parser.h

index 7e837c60f32c48a71a3c86331f8d57a43b29254c..ca1d26e99bfa29b030acc86699db9554ace8657f 100644 (file)
@@ -70,8 +70,8 @@
  * // Declare a buzzer command
  * MAKE_CMD(beep, "d", "",
  * ({
- *     buz_beep(args[1].l);
- *     RC_OK;
+ *     buz_beep(args[1].l);
+ *     RC_OK;
  * }), 0)
  *
  * // initialize the parser
@@ -92,7 +92,7 @@
  * //Execute command
  * if(!parser_execute_cmd(templ, args))
  * {
- *     // error
+ *     // error
  * }
  * // Now args contain the outputs of the function, you can send it
  * // back to the caller