about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-10-11 12:21:08 +0200
committerGitHub <noreply@github.com>2024-10-11 12:21:08 +0200
commitd590d21ba7ed78f089436f93bf82e089cfc50637 (patch)
treed55baabeb941f11760bdf5ad8240927f3aaecebf
parentcac36288b5116e7586047a2537d63b80dc809612 (diff)
parent1b5c05433a9e69f89183d121ab8c906623c981b8 (diff)
downloadrust-d590d21ba7ed78f089436f93bf82e089cfc50637.tar.gz
rust-d590d21ba7ed78f089436f93bf82e089cfc50637.zip
Rollup merge of #131529 - suaviloquence:1-fix-typo, r=aDotInTheVoid
rustdoc-json-types: fix typo in comment
-rw-r--r--src/rustdoc-json-types/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rustdoc-json-types/lib.rs b/src/rustdoc-json-types/lib.rs
index b3707cf6157..c8b54728d90 100644
--- a/src/rustdoc-json-types/lib.rs
+++ b/src/rustdoc-json-types/lib.rs
@@ -677,7 +677,7 @@ pub struct FunctionHeader {
 /// on unwinding for more info.
 #[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
 pub enum Abi {
-    // We only have a concrete listing here for stable ABI's because their are so many
+    // We only have a concrete listing here for stable ABI's because there are so many
     // See rustc_ast_passes::feature_gate::PostExpansionVisitor::check_abi for the list
     /// The default ABI, but that can also be written explicitly with `extern "Rust"`.
     Rust,