]> git.lizzy.rs Git - rust.git/commitdiff
Fix typo
authorpierwill <19642016+pierwill@users.noreply.github.com>
Wed, 23 Dec 2020 21:08:15 +0000 (13:08 -0800)
committerGitHub <noreply@github.com>
Wed, 23 Dec 2020 21:08:15 +0000 (13:08 -0800)
compiler/rustc_middle/src/ty/list.rs

index 83a2bdf90f9af0843baa178201445f830e012449..e657088a5e4655ac7a2b8e3a5e86d621e766f01d 100644 (file)
@@ -24,7 +24,7 @@
 /// This means we can use pointer for both
 /// equality comparisons and hashing.
 ///
-/// Unlike slices, The types contained in `List` are expected to be `Copy`
+/// Unlike slices, the types contained in `List` are expected to be `Copy`
 /// and iterating over a `List` returns `T` instead of a reference.
 ///
 /// Note: `Slice` was already taken by the `Ty`.