Rollup merge of #73428 - pierwill:patch-1, r=jonas-schievink

Fix typo in librustc_ast docs

Fixed sentence by removing a word.
This commit is contained in:
Manish Goregaokar 2020-06-18 15:21:01 -07:00 committed by GitHub
commit 1db7dc4794
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
//! additional metadata), and [`ItemKind`] (which represents a concrete type and contains
//! information specific to the type of the item).
//!
//! Other module items that worth mentioning:
//! Other module items worth mentioning:
//! - [`Ty`] and [`TyKind`]: A parsed Rust type.
//! - [`Expr`] and [`ExprKind`]: A parsed Rust expression.
//! - [`Pat`] and [`PatKind`]: A parsed Rust pattern. Patterns are often dual to expressions.