aboutsummaryrefslogtreecommitdiff
path: root/docs/nofork_noexec.txt
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-11 19:27:22 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-11 19:27:22 +0000
commit8fd371276f2485887bb5182671169f4d0849d67c (patch)
tree8d331149bfc0c17feedfd676599fe996917c96dc /docs/nofork_noexec.txt
parent6398cf477d96cea03459835ed7462d2e8d5b2a71 (diff)
downloadbusybox-w32-8fd371276f2485887bb5182671169f4d0849d67c.tar.gz
busybox-w32-8fd371276f2485887bb5182671169f4d0849d67c.tar.bz2
busybox-w32-8fd371276f2485887bb5182671169f4d0849d67c.zip
fix typo in doc
Diffstat (limited to 'docs/nofork_noexec.txt')
-rw-r--r--docs/nofork_noexec.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/nofork_noexec.txt b/docs/nofork_noexec.txt
index d54f19642..51bbcba3b 100644
--- a/docs/nofork_noexec.txt
+++ b/docs/nofork_noexec.txt
@@ -2,7 +2,7 @@
2 2
3Unix shells traditionally execute some commands internally in the attempt 3Unix shells traditionally execute some commands internally in the attempt
4to dramatically speed up execution. It will be slow as hell if for every 4to dramatically speed up execution. It will be slow as hell if for every
5"echo blah" shell with fork and exec /bin/echo. For this end, shells 5"echo blah" shell will fork and exec /bin/echo. For this end, shells
6have to _reimplement_ these commands internally. 6have to _reimplement_ these commands internally.
7 7
8Busybox is unique in this regard because it already is a collection 8Busybox is unique in this regard because it already is a collection