aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2021-06-02 09:17:58 -0500
committerRob Landley <rob@landley.net>2021-06-02 09:17:58 -0500
commit70754564fab010a9219735da231dc1e1e1aa7784 (patch)
treee72b1b5cc661250cd1dd3d157f1407d7741ce6d3
parent19e0cbabb4bd32343789febf3729cc91ed5aab4f (diff)
downloadtoybox-70754564fab010a9219735da231dc1e1e1aa7784.tar.gz
Remove unbalanced parentheses and repeated transition.
-rw-r--r--www/design.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/design.html b/www/design.html
index dbe7858c..a2d7e537 100644
--- a/www/design.html
+++ b/www/design.html
@@ -371,8 +371,8 @@ on 64 bit systems both are 64 bit.</p>
C types all have known size/behavior, and the only type whose
size varies is "long", which is the natural register size of the processor.</p>
-<p>(Note that Windows doesn't work like this, and I don't care, but if you're
-curious here are <a href=https://devblogs.microsoft.com/oldnewthing/20050131-00/?p=36563>The insane legacy reasons why this is broken on Windows</a> are explained here.</a></p>
+<p>Note that Windows doesn't work like this, and I don't care, but if you're
+curious here are <a href=https://devblogs.microsoft.com/oldnewthing/20050131-00/?p=36563>the insane legacy reasons why this is broken on Windows</a>.</a></p>
<b><h3>Signedness of char</h3></b>
<p>On platforms like x86, variables of type char default to unsigned. On