From e347d9d820e1ee3b74c3ba54ba1f2beed2949ff3 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Wed, 30 Jan 2019 08:51:09 -0500 Subject: [PATCH] fix typo in not-equal comparison description --- proposals/simd/SIMD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proposals/simd/SIMD.md b/proposals/simd/SIMD.md index 4df5f9a3d6..bb8d1d4a75 100644 --- a/proposals/simd/SIMD.md +++ b/proposals/simd/SIMD.md @@ -583,7 +583,7 @@ def S.eq(a, b): * `f32x4.ne(a: v128, b: v128) -> v128` * `f64x2.ne(a: v128, b: v128) -> v128` -The `ne` operations produce the inverse of their `ne` counterparts: +The `ne` operations produce the inverse of their `eq` counterparts: ```python def S.ne(a, b):