aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-11 19:27:22 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-11 19:27:22 +0000
commite59b81e82a66d1baee8217a75a4c3cc1b39818ab (patch)
tree8d331149bfc0c17feedfd676599fe996917c96dc
parent9e22fc4f5053377fa61d7e84480f7f4aa14d4bf5 (diff)
downloadbusybox-w32-e59b81e82a66d1baee8217a75a4c3cc1b39818ab.tar.gz
busybox-w32-e59b81e82a66d1baee8217a75a4c3cc1b39818ab.tar.bz2
busybox-w32-e59b81e82a66d1baee8217a75a4c3cc1b39818ab.zip
fix typo in doc
git-svn-id: svn://busybox.net/trunk/busybox@18404 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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