From 4235d93434fc139d9a4bd661d3f779f50a901764 Mon Sep 17 00:00:00 2001 From: await Marsha <46257533+m-rsha@users.noreply.github.com> Date: Fri, 6 Aug 2021 18:40:36 -0500 Subject: [PATCH] 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 --- src/tools/linkchecker/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/linkchecker/main.rs b/src/tools/linkchecker/main.rs index 15edd628cdffc..8cbe0a0c2e8e1 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, ids: RefCell> },