about summary refs log tree commit diff
path: root/RELEASES.md
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2021-06-22 00:00:38 +0900
committerGitHub <noreply@github.com>2021-06-22 00:00:38 +0900
commit58e7411092f6db30b982f485238d7cfc2875b00e (patch)
tree06f95eca2445e6d9629deb2c012900aaf9390ea2 /RELEASES.md
parentac410564f0ec68c59c0d9bc6980b469467bf50c0 (diff)
parente84c9aed6d82eddcaf96d1c4fe90adcd2182b9a0 (diff)
downloadrust-58e7411092f6db30b982f485238d7cfc2875b00e.tar.gz
rust-58e7411092f6db30b982f485238d7cfc2875b00e.zip
Rollup merge of #86274 - alexander-melentyev:spaces, r=bjorn3
Spaces
Diffstat (limited to 'RELEASES.md')
-rw-r--r--RELEASES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 2b159e7d004..35e5627e61f 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -369,7 +369,7 @@ Language
 --------
 - [You can now parameterize items such as functions, traits, and `struct`s by constant
   values in addition to by types and lifetimes.][79135] Also known as "const generics"
-  E.g. you can now write the following. Note: Only values of primitive integers, 
+  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> {