about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLokathor <zefria@gmail.com>2020-09-26 21:20:34 -0600
committerGitHub <noreply@github.com>2020-09-26 21:20:34 -0600
commit272c9461fc2c5b2a2876324efa83d0106b463f6a (patch)
treed0a536e33aa94a4244a4217cc64c14222d56cba4
parent0b73f22c1816f94d7ce300f1f72fdae7ad9b44d5 (diff)
downloadrust-272c9461fc2c5b2a2876324efa83d0106b463f6a.tar.gz
rust-272c9461fc2c5b2a2876324efa83d0106b463f6a.zip
missed a type
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5c841a27163..976ec644e41 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ The supported element types are as follows:
 * **Floating Point:** `f32`, `f64`
 * **Signed Integers:** `i8`, `i16`, `i32`, `i64`, `i128`, `isize`
 * **Unsigned Integers:** `u8`, `u16`, `u32`, `u64`, `u128`, `usize`
-* **Masks:** `mask8`, `mask16`, `mask32`, `mask64`, `masksize`
+* **Masks:** `mask8`, `mask16`, `mask32`, `mask64`, `mask128`, `masksize`
 
 Floating point, signed integers, and unsigned integers are the [primitive types](https://doc.rust-lang.org/core/primitive/index.html) you're already used to.
 The `mask` types are "truthy" values, but they use the number of bits in their name instead of just 1 bit like a normal `bool` uses.