Delete spaces

This commit is contained in:
Alexander Melentyev 2021-06-21 12:11:37 +03:00
parent fb3ea63d9b
commit e84c9aed6d
18 changed files with 48 additions and 48 deletions

View file

@ -174,7 +174,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> {