aboutsummaryrefslogtreecommitdiff
path: root/CAndC++.md
diff options
context:
space:
mode:
authorDan Gohman <sunfish@mozilla.com>2015-06-12 10:28:53 -0700
committerDan Gohman <sunfish@mozilla.com>2015-06-12 10:28:53 -0700
commitf0d1c3b9be50cc61ec9b81976ea969847b93f09a (patch)
tree161bc6e43e42f68534358e6592daf9dfdb853c05 /CAndC++.md
parent70b998a63ae4aca71daac7c361d0724e07f5e009 (diff)
downloadnanowasm-design-f0d1c3b9be50cc61ec9b81976ea969847b93f09a.tar.gz
Delete title period, and reword implementation-defined behavior paragraph.
Diffstat (limited to 'CAndC++.md')
-rw-r--r--CAndC++.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/CAndC++.md b/CAndC++.md
index 4429ee1..328ed46 100644
--- a/CAndC++.md
+++ b/CAndC++.md
@@ -1,4 +1,4 @@
-# Guide for C/C++ developers.
+# Guide for C/C++ developers
WebAssembly is being designed to support C and C++ code well, right from
the start in [the MVP](MVP.md). The following explains the outlook for
@@ -58,10 +58,10 @@ and fix such bugs in their code.
#### Implementation-Defined Behavior
-Most implementation-defined behavior is dependent on the compiler, rather
-than on the underlying platform, but for those details that are dependent on
-the platform, they follow naturally from WebAssembly's 8-bit bytes, 32-bit and
-64-bit two's complement integers, and
+Most implementation-defined behavior in C and C++ is dependent on the compiler
+rather than on the underlying platform. For those details that are dependent
+on the platform, on WebAssembly they follow naturally from having 8-bit bytes,
+32-bit and 64-bit two's complement integers, and
[32-bit and 64-bit IEEE-754-style floating point support]
(AstSemantics.md#floating-point-operations).