about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2020-06-18 15:21:01 -0700
committerGitHub <noreply@github.com>2020-06-18 15:21:01 -0700
commit1db7dc4794f0a8cf2fafb26ed97f2067321b198c (patch)
treef81f51d54590cf8d57697b9a02984a9ab651f0fa
parent9f8f994ad9cc996b304a90e5ca7c1d894c7eff4d (diff)
parent9f2e8adc3597b21389dda31b687540e1a688fe87 (diff)
downloadrust-1db7dc4794f0a8cf2fafb26ed97f2067321b198c.tar.gz
rust-1db7dc4794f0a8cf2fafb26ed97f2067321b198c.zip
Rollup merge of #73428 - pierwill:patch-1, r=jonas-schievink
Fix typo in librustc_ast docs

Fixed sentence by removing a word.
-rw-r--r--src/librustc_ast/ast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_ast/ast.rs b/src/librustc_ast/ast.rs
index 62406552e31..ce186c4834d 100644
--- a/src/librustc_ast/ast.rs
+++ b/src/librustc_ast/ast.rs
@@ -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.