]> git.lizzy.rs Git - rust.git/blobdiff - RELEASES.md
Auto merge of #84910 - eopb:stabilize_int_error_matching, r=yaahc
[rust.git] / RELEASES.md
index 2b159e7d00434bd53f215bdbe71cbabb5eda8a22..35e5627e61ff86f95f9547751ea938b656ccd1a5 100644 (file)
@@ -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> {