Skip to content

Commit 60e8aef

Browse files
Fix tidy errors
1 parent 88d45d0 commit 60e8aef

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

REUSE.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ SPDX-FileCopyrightText = "2015 Anders Kaseorg <andersk@mit.edu>"
9292
SPDX-License-Identifier = "MIT"
9393

9494
[[annotations]]
95-
path = "src/librustdoc/html/static/fonts/FiraSans**"
95+
path = "src/librustdoc/html/static/fonts/Fira**"
9696
precedence = "override"
9797
SPDX-FileCopyrightText = ["2014, Mozilla Foundation", "2014, Telefonica S.A."]
9898
SPDX-License-Identifier = "OFL-1.1"

license-metadata.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@
115115
"files": [
116116
"FiraSans-LICENSE.txt",
117117
"FiraSans-Medium.woff2",
118-
"FiraSans-Regular.woff2"
118+
"FiraSans-Regular.woff2",
119+
"FiraMono-Medium.woff2",
120+
"FiraMono-Regular.woff2"
119121
],
120122
"license": {
121123
"copyright": [
@@ -266,4 +268,4 @@
266268
],
267269
"type": "root"
268270
}
269-
}
271+
}

src/tools/tidy/src/bins.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ mod os_impl {
134134
&mut |entry| {
135135
let file = entry.path();
136136
let extension = file.extension();
137-
let scripts = ["py", "sh", "ps1"];
137+
let scripts = ["py", "sh", "ps1", "woff2"];
138138
if scripts.into_iter().any(|e| extension == Some(OsStr::new(e))) {
139139
return;
140140
}

0 commit comments

Comments
 (0)