about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-06-02 18:30:03 +0200
committerGitHub <noreply@github.com>2020-06-02 18:30:03 +0200
commitde1a767481fc6a088bd634bf07e4e3ccea931e1d (patch)
tree4b40e07d7a5592261c3daa016f2e1fb675e46a08
parent9763e0c089c1e55d8e25bb4b97d0c61b8c402f11 (diff)
parent786ad87d4032ed15010547ea0180d43745ff8f89 (diff)
downloadrust-de1a767481fc6a088bd634bf07e4e3ccea931e1d.tar.gz
rust-de1a767481fc6a088bd634bf07e4e3ccea931e1d.zip
Rollup merge of #72914 - petertodd:2020-minor-at-most-32, r=jonas-schievink
Minor: off-by-one error in RELEASES.md
-rw-r--r--RELEASES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 757821abcd1..fc9628bb365 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -43,7 +43,7 @@ Libraries
 - [Unicode 13 is now supported.][69929]
 - [`String` now implements `From<&mut str>`.][69661]
 - [`IoSlice` now implements `Copy`.][69403]
-- [`Vec<T>` now implements `From<[T; N]>`.][68692] Where `N` is less than 32.
+- [`Vec<T>` now implements `From<[T; N]>`.][68692] Where `N` is at most 32.
 - [`proc_macro::LexError` now implements `fmt::Display` and `Error`.][68899]
 - [`from_le_bytes`, `to_le_bytes`, `from_be_bytes`, `to_be_bytes`,
   `from_ne_bytes`, and `to_ne_bytes` methods are now `const` for all