about summary refs log tree commit diff
path: root/RELEASES.md
diff options
context:
space:
mode:
authorXAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com>2021-02-09 11:11:28 +0000
committerGitHub <noreply@github.com>2021-02-09 11:11:28 +0000
commit8dbbe78be6aebc78b09acee57965e5f658679367 (patch)
treeba66d628cf0e6edba7e27d9bda41d66537c68c8f /RELEASES.md
parentcc5667a094c319693425291a312bab4bdf80731f (diff)
downloadrust-8dbbe78be6aebc78b09acee57965e5f658679367.tar.gz
rust-8dbbe78be6aebc78b09acee57965e5f658679367.zip
Apply suggestions from code review
Co-authored-by: Miguel Ojeda <ojeda@users.noreply.github.com>
Diffstat (limited to 'RELEASES.md')
-rw-r--r--RELEASES.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 05aaa52cb00..e6734414f28 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -4,7 +4,7 @@ Version 1.51.0 (2021-03-25)
 Language
 --------
 - [You can now parameterize items such as functions, traits, and `struct`s by constant
-  values in addition to by types.][78135] E.g. You can now write the following. Note:
+  values in addition to by types.][78135] E.g. you can now write the following. Note:
   Only values of primitive integers, `bool`, or `char` types are currently permitted.
   ```rust
   struct GenericArray<T, const LENGTH: usize> {
@@ -28,7 +28,7 @@ Compiler
 
 - [Added the `-Csplit-debuginfo` codegen option.][79570] This option controls whether
   debug information is split across multiple files or packed into a single file.
-- [Added tier 3\*  support for `aarch64_be-unknown-linux-gnu`, `aarch64-unknown-linux-gnu_ilp32`,
+- [Added tier 3\* support for `aarch64_be-unknown-linux-gnu`, `aarch64-unknown-linux-gnu_ilp32`,
   and `aarch64_be-unknown-linux-gnu_ilp32` targets.][81455]
 - [Added tier 3 support for `i386-unknown-linux-gnu` and `i486-unknown-linux-gnu` targets.][80662]
 - [The `target-cpu=native` option will now detect individual features of CPUs.][80749]
@@ -82,7 +82,7 @@ Rustdoc
 
 Various improvements to intra-doc links:
 
-  - [You can link to no path based primitives such as `slice`.][80181]
+  - [You can link to non-path primitives such as `slice`.][80181]
   - [You can link to associated items.][74489]
   - [You can now link to items with generics such as `Vec<T>`.][76934]
 
@@ -96,7 +96,7 @@ Compatibility Notes
 
 - [Bumped the minimum `g++` for `linux-gnu` targets to `g++-8` from `g++-7`.][81521]
 - [WASI platforms no longer use the `wasm-bindgen` ABI.][79998]
-- [rustc no longer promotes division, modulo and indexing operations to `const` that
+- [`rustc` no longer promotes division, modulo and indexing operations to `const` that
   could fail.][80579]
 
 Internal Only