Skip to content

Commit e697545

Browse files
Rollup merge of rust-lang#110155 - DaniPopes:rest-typos, r=jyn514
Fix typos in librustdoc, tools and config files I used [`typos`](https://github.com/crate-ci/typos) to fix all typos, minus the ones present in rust-lang#110153 and in rust-lang#110154. Refs rust-lang#110150
2 parents 87c9b3f + c37e728 commit e697545

File tree

16 files changed

+74
-73
lines changed

16 files changed

+74
-73
lines changed

config.example.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ changelog-seen = 2
257257
#python = "python"
258258

259259
# The path to the REUSE executable to use. Note that REUSE is not required in
260-
# most cases, as our tooling relies on a cached (and shrinked) copy of the
260+
# most cases, as our tooling relies on a cached (and shrunk) copy of the
261261
# REUSE output present in the git repository and in our source tarballs.
262262
#
263263
# REUSE is only needed if your changes caused the overall licensing of the

src/bootstrap/channel.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ pub fn read_commit_info_file(root: &Path) -> Option<Info> {
139139
sha: sha.to_owned(),
140140
short_sha: short_sha.to_owned(),
141141
},
142-
_ => panic!("the `git-comit-info` file is malformed"),
142+
_ => panic!("the `git-commit-info` file is malformed"),
143143
};
144144
Some(info)
145145
} else {

src/doc/style-guide/src/expressions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ Examples:
643643
```rust
644644
match foo {
645645
foo => bar,
646-
a_very_long_patten | another_pattern if an_expression() => {
646+
a_very_long_pattern | another_pattern if an_expression() => {
647647
no_room_for_this_expression()
648648
}
649649
foo => {

src/doc/unstable-book/src/compiler-flags/dump-mono-stats-format.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
--------------------
44

55
The `-Z dump-mono-stats-format` compiler flag controls what file format to use for `-Z dump-mono-stats`.
6-
The default is markdown; currently JSON is also supported. JSON can be useful for programatically manipulating the results (e.g. to find the item that took the longest to compile).
6+
The default is markdown; currently JSON is also supported. JSON can be useful for programmatically manipulating the results (e.g. to find the item that took the longest to compile).

src/etc/installer/msi/rust.wxs

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
<SetProperty Sequence="ui" Before="CostFinalize"
120120
Id="WixAppFolder" Value="WixPerUserFolder">NOT ALLUSERS</SetProperty>
121121

122-
<!-- UI sets ALLUSERS per user selection; progagate this choice to MSIINSTALLPERUSER before executing installation actions -->
122+
<!-- UI sets ALLUSERS per user selection; propagate this choice to MSIINSTALLPERUSER before executing installation actions -->
123123
<SetProperty Sequence="ui" Before="ExecuteAction"
124124
Id="MSIINSTALLPERUSER" Value="1">NOT ALLUSERS</SetProperty>
125125

src/librustdoc/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ pub(crate) struct RenderOptions {
230230
pub(crate) extension_css: Option<PathBuf>,
231231
/// A map of crate names to the URL to use instead of querying the crate's `html_root_url`.
232232
pub(crate) extern_html_root_urls: BTreeMap<String, String>,
233-
/// Whether to give precedence to `html_root_url` or `--exten-html-root-url`.
233+
/// Whether to give precedence to `html_root_url` or `--extern-html-root-url`.
234234
pub(crate) extern_html_root_takes_precedence: bool,
235235
/// A map of the default settings (values are as for DOM storage API). Keys should lack the
236236
/// `rustdoc-` prefix.

src/librustdoc/html/format.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -349,10 +349,10 @@ pub(crate) fn print_where_clause<'a, 'tcx: 'a>(
349349
let mut br_with_padding = String::with_capacity(6 * indent + 28);
350350
br_with_padding.push_str("\n");
351351

352-
let padding_amout =
352+
let padding_amount =
353353
if ending == Ending::Newline { indent + 4 } else { indent + "fn where ".len() };
354354

355-
for _ in 0..padding_amout {
355+
for _ in 0..padding_amount {
356356
br_with_padding.push_str(" ");
357357
}
358358
let where_preds = where_preds.to_string().replace('\n', &br_with_padding);

src/librustdoc/html/render/print_item.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1796,10 +1796,11 @@ fn render_struct(
17961796
}
17971797
match ty {
17981798
None => {
1799-
let where_diplayed = g.map(|g| print_where_clause_and_check(w, g, cx)).unwrap_or(false);
1799+
let where_displayed =
1800+
g.map(|g| print_where_clause_and_check(w, g, cx)).unwrap_or(false);
18001801

18011802
// If there wasn't a `where` clause, we add a whitespace.
1802-
if !where_diplayed {
1803+
if !where_displayed {
18031804
w.write_str(" {");
18041805
} else {
18051806
w.write_str("{");

src/rustdoc-json-types/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ pub enum Type {
550550
DynTrait(DynTrait),
551551
/// Parameterized types
552552
Generic(String),
553-
/// Built in numberic (i*, u*, f*) types, bool, and char
553+
/// Built in numeric (i*, u*, f*) types, bool, and char
554554
Primitive(String),
555555
/// `extern "ABI" fn`
556556
FunctionPointer(Box<FunctionPointer>),

src/tools/collect-license-metadata/src/path_tree.rs

+44-44
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ use std::path::{Path, PathBuf};
1010
#[derive(serde::Serialize)]
1111
#[serde(rename_all = "kebab-case", tag = "type")]
1212
pub(crate) enum Node<L> {
13-
Root { childs: Vec<Node<L>> },
14-
Directory { name: PathBuf, childs: Vec<Node<L>>, license: Option<L> },
13+
Root { children: Vec<Node<L>> },
14+
Directory { name: PathBuf, children: Vec<Node<L>>, license: Option<L> },
1515
File { name: PathBuf, license: L },
1616
Group { files: Vec<PathBuf>, directories: Vec<PathBuf>, license: L },
1717
Empty,
@@ -48,14 +48,14 @@ impl Node<LicenseId> {
4848
/// ```
4949
fn merge_directories(&mut self) {
5050
match self {
51-
Node::Root { childs } | Node::Directory { childs, license: None, .. } => {
51+
Node::Root { children } | Node::Directory { children, license: None, .. } => {
5252
let mut directories = BTreeMap::new();
5353
let mut files = Vec::new();
5454

55-
for child in childs.drain(..) {
55+
for child in children.drain(..) {
5656
match child {
57-
Node::Directory { name, mut childs, license: None } => {
58-
directories.entry(name).or_insert_with(Vec::new).append(&mut childs);
57+
Node::Directory { name, mut children, license: None } => {
58+
directories.entry(name).or_insert_with(Vec::new).append(&mut children);
5959
}
6060
file @ Node::File { .. } => {
6161
files.push(file);
@@ -73,14 +73,14 @@ impl Node<LicenseId> {
7373
}
7474
}
7575

76-
childs.extend(directories.into_iter().map(|(name, childs)| Node::Directory {
76+
children.extend(directories.into_iter().map(|(name, children)| Node::Directory {
7777
name,
78-
childs,
78+
children,
7979
license: None,
8080
}));
81-
childs.append(&mut files);
81+
children.append(&mut files);
8282

83-
for child in &mut *childs {
83+
for child in &mut *children {
8484
child.merge_directories();
8585
}
8686
}
@@ -105,13 +105,13 @@ impl Node<LicenseId> {
105105
/// our inclusion of LLVM.
106106
fn collapse_in_licensed_directories(&mut self) {
107107
match self {
108-
Node::Directory { childs, license, .. } => {
109-
for child in &mut *childs {
108+
Node::Directory { children, license, .. } => {
109+
for child in &mut *children {
110110
child.collapse_in_licensed_directories();
111111
}
112112

113113
let mut licenses_count = BTreeMap::new();
114-
for child in &*childs {
114+
for child in &*children {
115115
let Some(license) = child.license() else { continue };
116116
*licenses_count.entry(license).or_insert(0) += 1;
117117
}
@@ -122,12 +122,12 @@ impl Node<LicenseId> {
122122
.map(|(license, _)| license);
123123

124124
if let Some(most_popular_license) = most_popular_license {
125-
childs.retain(|child| child.license() != Some(most_popular_license));
125+
children.retain(|child| child.license() != Some(most_popular_license));
126126
*license = Some(most_popular_license);
127127
}
128128
}
129-
Node::Root { childs } => {
130-
for child in &mut *childs {
129+
Node::Root { children } => {
130+
for child in &mut *children {
131131
child.collapse_in_licensed_directories();
132132
}
133133
}
@@ -138,29 +138,29 @@ impl Node<LicenseId> {
138138
}
139139

140140
/// Reduce the depth of the tree by merging subdirectories with the same license as their
141-
/// parent directory into their parent, and adjusting the paths of the childs accordingly.
141+
/// parent directory into their parent, and adjusting the paths of the children accordingly.
142142
fn merge_directory_licenses(&mut self) {
143143
match self {
144-
Node::Root { childs } => {
145-
for child in &mut *childs {
144+
Node::Root { children } => {
145+
for child in &mut *children {
146146
child.merge_directory_licenses();
147147
}
148148
}
149-
Node::Directory { childs, license, .. } => {
149+
Node::Directory { children, license, .. } => {
150150
let mut to_add = Vec::new();
151-
for child in &mut *childs {
151+
for child in &mut *children {
152152
child.merge_directory_licenses();
153153

154154
let Node::Directory {
155155
name: child_name,
156-
childs: child_childs,
156+
children: child_children,
157157
license: child_license,
158158
} = child else { continue };
159159

160160
if child_license != license {
161161
continue;
162162
}
163-
for mut child_child in child_childs.drain(..) {
163+
for mut child_child in child_children.drain(..) {
164164
match &mut child_child {
165165
Node::Root { .. } => {
166166
panic!("can't have a root inside another element");
@@ -181,7 +181,7 @@ impl Node<LicenseId> {
181181

182182
*child = Node::Empty;
183183
}
184-
childs.append(&mut to_add);
184+
children.append(&mut to_add);
185185
}
186186
Node::Empty => {}
187187
Node::File { .. } => {}
@@ -203,14 +203,14 @@ impl Node<LicenseId> {
203203
directories: Vec<PathBuf>,
204204
}
205205
match self {
206-
Node::Root { childs } | Node::Directory { childs, .. } => {
206+
Node::Root { children } | Node::Directory { children, .. } => {
207207
let mut grouped: BTreeMap<LicenseId, Grouped> = BTreeMap::new();
208208

209-
for child in &mut *childs {
209+
for child in &mut *children {
210210
child.merge_groups();
211211
match child {
212-
Node::Directory { name, childs, license: Some(license) } => {
213-
if childs.is_empty() {
212+
Node::Directory { name, children, license: Some(license) } => {
213+
if children.is_empty() {
214214
grouped
215215
.entry(*license)
216216
.or_insert_with(Grouped::default)
@@ -234,16 +234,16 @@ impl Node<LicenseId> {
234234
for (license, mut grouped) in grouped.into_iter() {
235235
if grouped.files.len() + grouped.directories.len() <= 1 {
236236
if let Some(name) = grouped.files.pop() {
237-
childs.push(Node::File { license, name });
237+
children.push(Node::File { license, name });
238238
} else if let Some(name) = grouped.directories.pop() {
239-
childs.push(Node::Directory {
239+
children.push(Node::Directory {
240240
name,
241-
childs: Vec::new(),
241+
children: Vec::new(),
242242
license: Some(license),
243243
});
244244
}
245245
} else {
246-
childs.push(Node::Group {
246+
children.push(Node::Group {
247247
license,
248248
files: grouped.files,
249249
directories: grouped.directories,
@@ -261,11 +261,11 @@ impl Node<LicenseId> {
261261
/// sure to remove them from the tree.
262262
fn remove_empty(&mut self) {
263263
match self {
264-
Node::Root { childs } | Node::Directory { childs, .. } => {
265-
for child in &mut *childs {
264+
Node::Root { children } | Node::Directory { children, .. } => {
265+
for child in &mut *children {
266266
child.remove_empty();
267267
}
268-
childs.retain(|child| !matches!(child, Node::Empty));
268+
children.retain(|child| !matches!(child, Node::Empty));
269269
}
270270
Node::Group { .. } => {}
271271
Node::File { .. } => {}
@@ -275,7 +275,7 @@ impl Node<LicenseId> {
275275

276276
fn license(&self) -> Option<LicenseId> {
277277
match self {
278-
Node::Directory { childs, license: Some(license), .. } if childs.is_empty() => {
278+
Node::Directory { children, license: Some(license), .. } if children.is_empty() => {
279279
Some(*license)
280280
}
281281
Node::File { license, .. } => Some(*license),
@@ -285,7 +285,7 @@ impl Node<LicenseId> {
285285
}
286286

287287
pub(crate) fn build(mut input: Vec<(PathBuf, LicenseId)>) -> Node<LicenseId> {
288-
let mut childs = Vec::new();
288+
let mut children = Vec::new();
289289

290290
// Ensure reproducibility of all future steps.
291291
input.sort();
@@ -295,15 +295,15 @@ pub(crate) fn build(mut input: Vec<(PathBuf, LicenseId)>) -> Node<LicenseId> {
295295
for component in path.parent().unwrap_or_else(|| Path::new(".")).components().rev() {
296296
node = Node::Directory {
297297
name: component.as_os_str().into(),
298-
childs: vec![node],
298+
children: vec![node],
299299
license: None,
300300
};
301301
}
302302

303-
childs.push(node);
303+
children.push(node);
304304
}
305305

306-
Node::Root { childs }
306+
Node::Root { children }
307307
}
308308

309309
/// Convert a `Node<LicenseId>` into a `Node<&License>`, expanding all interned license IDs with a
@@ -313,14 +313,14 @@ pub(crate) fn expand_interned_licenses(
313313
interner: &LicensesInterner,
314314
) -> Node<&License> {
315315
match node {
316-
Node::Root { childs } => Node::Root {
317-
childs: childs
316+
Node::Root { children } => Node::Root {
317+
children: children
318318
.into_iter()
319319
.map(|child| expand_interned_licenses(child, interner))
320320
.collect(),
321321
},
322-
Node::Directory { name, childs, license } => Node::Directory {
323-
childs: childs
322+
Node::Directory { name, children, license } => Node::Directory {
323+
children: children
324324
.into_iter()
325325
.map(|child| expand_interned_licenses(child, interner))
326326
.collect(),

src/tools/generate-copyright/src/main.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ fn render_recursive(node: &Node, buffer: &mut Vec<u8>, depth: usize) -> Result<(
2020
let prefix = std::iter::repeat("> ").take(depth + 1).collect::<String>();
2121

2222
match node {
23-
Node::Root { childs } => {
24-
for child in childs {
23+
Node::Root { children } => {
24+
for child in children {
2525
render_recursive(child, buffer, depth)?;
2626
}
2727
}
28-
Node::Directory { name, childs, license } => {
28+
Node::Directory { name, children, license } => {
2929
render_license(&prefix, std::iter::once(name), license, buffer)?;
30-
if !childs.is_empty() {
30+
if !children.is_empty() {
3131
writeln!(buffer, "{prefix}")?;
3232
writeln!(buffer, "{prefix}*Exceptions:*")?;
33-
for child in childs {
33+
for child in children {
3434
writeln!(buffer, "{prefix}")?;
3535
render_recursive(child, buffer, depth + 1)?;
3636
}
@@ -73,8 +73,8 @@ struct Metadata {
7373
#[derive(serde::Deserialize)]
7474
#[serde(rename_all = "kebab-case", tag = "type")]
7575
pub(crate) enum Node {
76-
Root { childs: Vec<Node> },
77-
Directory { name: String, childs: Vec<Node>, license: License },
76+
Root { children: Vec<Node> },
77+
Directory { name: String, children: Vec<Node>, license: License },
7878
File { name: String, license: License },
7979
Group { files: Vec<String>, directories: Vec<String>, license: License },
8080
}

src/tools/jsondocck/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ fn check_command(command: Command, cache: &mut Cache) -> Result<(), CkError> {
237237

238238
// Serde json doesn't implement Ord or Hash for Value, so we must
239239
// use a Vec here. While in theory that makes setwize equality
240-
// O(n^2), in practice n will never be large enought to matter.
240+
// O(n^2), in practice n will never be large enough to matter.
241241
let expected_values =
242242
values.iter().map(|v| string_to_value(v, cache)).collect::<Vec<_>>();
243243
if expected_values.len() != got_values.len() {

src/tools/jsondoclint/src/item_kind.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use rustdoc_json_types::{Item, ItemEnum, ItemKind, ItemSummary};
22

3-
/// A univeral way to represent an [`ItemEnum`] or [`ItemKind`]
3+
/// A universal way to represent an [`ItemEnum`] or [`ItemKind`]
44
#[derive(Debug, Clone, Copy)]
55
pub(crate) enum Kind {
66
Module,
@@ -53,7 +53,7 @@ impl Kind {
5353
Primitive => true,
5454
ForeignType => true,
5555

56-
// FIXME(adotinthevoid): I'm not sure if these are corrent
56+
// FIXME(adotinthevoid): I'm not sure if these are correct
5757
Keyword => false,
5858
OpaqueTy => false,
5959
ProcAttribute => false,

0 commit comments

Comments
 (0)