diff options
author | Rob Landley <rob@landley.net> | 2012-01-16 01:44:17 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-01-16 01:44:17 -0600 |
commit | 66a69d9f5751fb38ebd2ade662b90b68a1cc7c2d (patch) | |
tree | b60f7f4424a3c279577a52747b2edbcfd0459deb /www/design.html | |
parent | 8f8c504e585b6850abf628cabdb9ef231bef1a35 (diff) | |
download | toybox-66a69d9f5751fb38ebd2ade662b90b68a1cc7c2d.tar.gz |
Fluff out documentation and skeleton code.
Diffstat (limited to 'www/design.html')
-rw-r--r-- | www/design.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/design.html b/www/design.html index 187f4eb2..b7704af9 100644 --- a/www/design.html +++ b/www/design.html @@ -158,8 +158,10 @@ space.</p> <b><h3>Simple</h3></b> -<p>Complexity is a cost, just like code size or runtime speed. Treat it as -a cost, and spend your complexity budget wisely.</p> +<p>Complexity is a cost, just like code size or runtime speed. Treat it as +a cost, and spend your complexity budget wisely. (Sometimes this means you +can't afford a feature because it complicates the code too much to be +worth it.)</p> <p>Simplicity has lots of benefits. Simple code is easy to maintain, easy to port to new processors, easy to audit for security holes, and easy to |