aboutsummaryrefslogtreecommitdiff
path: root/docs/new-applet-HOWTO.txt
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-08-06 14:03:27 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-08-06 14:03:27 +0200
commitfbecca1bed1b6daf10341304af2156baabc7af57 (patch)
tree8ede3ecea0ce8de7c033b093954c049b1ba7a0c0 /docs/new-applet-HOWTO.txt
parent9a58cc0f7fbdf967c159588e0de5f3a8dfd87db5 (diff)
downloadbusybox-fbecca1bed1b6daf10341304af2156baabc7af57.tar.gz
Tweak outdated documentation and comments
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'docs/new-applet-HOWTO.txt')
-rw-r--r--docs/new-applet-HOWTO.txt15
1 files changed, 8 insertions, 7 deletions
diff --git a/docs/new-applet-HOWTO.txt b/docs/new-applet-HOWTO.txt
index 078e77bce..619d47fb8 100644
--- a/docs/new-applet-HOWTO.txt
+++ b/docs/new-applet-HOWTO.txt
@@ -147,17 +147,17 @@ Placement / Directory
Find the appropriate directory for your new applet.
-Add the kbuild snippet to the .c file:
-
-//kbuild:lib-$(CONFIG_MU) += mu.o
-
Add the config snippet to the .c file:
//config:config MU
//config: bool "MU"
//config: default y
//config: help
-//config: Returns an indeterminate value.
+//config: Returns an indeterminate value.
+
+Add the kbuild snippet to the .c file:
+
+//kbuild:lib-$(CONFIG_MU) += mu.o
Usage String(s)
@@ -168,8 +168,9 @@ This should look like the following:
//usage:#define mu_trivial_usage
//usage: "[-abcde] FILE..."
-//usage:#define mu_full_usage
-//usage: "Returns an indeterminate value\n"
+//usage:#define mu_full_usage "\n\n"
+//usage: "Returns an indeterminate value"
+//usage: "\n"
//usage: "\n -a First function"
//usage: "\n -b Second function"
//usage: ...