Merge pull request #2435 from petertodd/2018-05_2000-typo

Fix typo in RFC 2000
This commit is contained in:
Mazdak Farrokhzad 2018-05-10 19:54:30 +02:00 committed by GitHub
commit adecae4da2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ allow users to write impls which are abstract over all array types.
# Motivation
[motivation]: #motivation
Rust currently has one type which is parametric over constants: the built-inf
Rust currently has one type which is parametric over constants: the built-in
array type `[T; LEN]`. However, because const generics are not a first class
feature, users cannot define their own types which are generic over constant
values, and cannot implement traits for all arrays.