Changing <atomic> to follow Design A

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@116742 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/www/atomic_design_a.html b/www/atomic_design_a.html
index f649b2b..0fc0043 100644
--- a/www/atomic_design_a.html
+++ b/www/atomic_design_a.html
@@ -79,18 +79,18 @@
 
 <font color="#C80000">// type must be trivially copyable</font>
 <font color="#C80000">// Behavior is defined for mem_success = [0 ... 5],</font>
-<font color="#C80000">//   mem_falure &lt;= mem_success</font>
-<font color="#C80000">//   mem_falure != 3</font>
-<font color="#C80000">//   mem_falure != 4</font>
+<font color="#C80000">//   mem_failure &lt;= mem_success</font>
+<font color="#C80000">//   mem_failure != 3</font>
+<font color="#C80000">//   mem_failure != 4</font>
 bool __atomic_compare_exchange_strong(type* atomic_obj,
                                       type* expected, type desired,
                                       int mem_success, int mem_failure);
 
 <font color="#C80000">// type must be trivially copyable</font>
 <font color="#C80000">// Behavior is defined for mem_success = [0 ... 5],</font>
-<font color="#C80000">//   mem_falure &lt;= mem_success</font>
-<font color="#C80000">//   mem_falure != 3</font>
-<font color="#C80000">//   mem_falure != 4</font>
+<font color="#C80000">//   mem_failure &lt;= mem_success</font>
+<font color="#C80000">//   mem_failure != 3</font>
+<font color="#C80000">//   mem_failure != 4</font>
 bool __atomic_compare_exchange_weak(type* atomic_obj,
                                     type* expected, type desired,
                                     int mem_success, int mem_failure);