about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2021-08-08 01:13:43 +0900
committerGitHub <noreply@github.com>2021-08-08 01:13:43 +0900
commit6ddbf9ec3c30eedcb5f3288afa3508f4ceb7c6ba (patch)
tree058fc47f27567bb095acc25555e178948c9a0b40
parentdc78ee0c80aac7d0003419590cf14d7c8c8e9af3 (diff)
parent4235d93434fc139d9a4bd661d3f779f50a901764 (diff)
downloadrust-6ddbf9ec3c30eedcb5f3288afa3508f4ceb7c6ba.tar.gz
rust-6ddbf9ec3c30eedcb5f3288afa3508f4ceb7c6ba.zip
Rollup merge of #87833 - m-rsha:patch-1, r=Aaron1011
Fix typo -- "The" -> "They"

I was reading through source code to try to learn more about the language and how to make the most of it when I ran into a small typo, so I figured I'd offer up a fix! I'm pretty new now, but hopefully I can offer up more substantial changes later. :D
-rw-r--r--src/tools/linkchecker/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/linkchecker/main.rs b/src/tools/linkchecker/main.rs
index 15edd628cdf..8cbe0a0c2e8 100644
--- a/src/tools/linkchecker/main.rs
+++ b/src/tools/linkchecker/main.rs
@@ -129,7 +129,7 @@ enum FileEntry {
     /// An HTML file.
     ///
     /// This includes the contents of the HTML file, and an optional set of
-    /// HTML IDs. The IDs are used for checking fragments. The are computed
+    /// HTML IDs. The IDs are used for checking fragments. They are computed
     /// as-needed. The source is discarded (replaced with an empty string)
     /// after the file has been checked, to conserve on memory.
     HtmlFile { source: Rc<String>, ids: RefCell<HashSet<String>> },