aboutsummaryrefslogtreecommitdiff
path: root/docs/embedded-scripts.txt
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2021-12-17 21:38:02 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2021-12-17 21:38:02 +0100
commit00d10cb6eb47e73bd88ab7e884562b555462815f (patch)
treebfbb097a9c16a3dfdbe557523cab401180a069b9 /docs/embedded-scripts.txt
parentaaade69ce9faac6c05ab8b800fc9e9d4dee8ed54 (diff)
downloadbusybox-w32-00d10cb6eb47e73bd88ab7e884562b555462815f.tar.gz
busybox-w32-00d10cb6eb47e73bd88ab7e884562b555462815f.tar.bz2
busybox-w32-00d10cb6eb47e73bd88ab7e884562b555462815f.zip
docs/embedded-scripts.txt: whitespace fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'docs/embedded-scripts.txt')
-rw-r--r--docs/embedded-scripts.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/embedded-scripts.txt b/docs/embedded-scripts.txt
index 7a273d698..f6f107d4e 100644
--- a/docs/embedded-scripts.txt
+++ b/docs/embedded-scripts.txt
@@ -55,19 +55,19 @@ Next we need the configuration data. This is very similar to the example
55code for the native applet: 55code for the native applet:
56 56
57//config:config MU 57//config:config MU
58//config: bool "MU" 58//config: bool "MU"
59//config: default y 59//config: default y
60//config: help 60//config: help
61//config: Returns an indeterminate value. 61//config: Returns an indeterminate value.
62 62
63//applet:IF_MU(APPLET_SCRIPTED(mu, scripted, BB_DIR_USR_BIN, BB_SUID_DROP, mu)) 63//applet:IF_MU(APPLET_SCRIPTED(mu, scripted, BB_DIR_USR_BIN, BB_SUID_DROP, mu))
64 64
65//usage:#define mu_trivial_usage 65//usage:#define mu_trivial_usage
66//usage: "[-abcde] FILE..." 66//usage: "[-abcde] FILE..."
67//usage:#define mu_full_usage 67//usage:#define mu_full_usage
68//usage: "Returns an indeterminate value\n" 68//usage: "Returns an indeterminate value\n"
69//usage: "\n -a First function" 69//usage: "\n -a First function"
70//usage: "\n -b Second function" 70//usage: "\n -b Second function"
71 71
72The only difference is that the applet is specified as being of type 72The only difference is that the applet is specified as being of type
73APPLET_SCRIPTED. It would also be useful to include details of any 73APPLET_SCRIPTED. It would also be useful to include details of any