Skip to content

Commit 240fad0

Browse files
Update to last updates
1 parent be23cd9 commit 240fad0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bootstrap/test.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -624,11 +624,11 @@ impl Step for RustdocJSNotStd {
624624
const DEFAULT: bool = true;
625625
const ONLY_HOSTS: bool = true;
626626

627-
fn should_run(run: ShouldRun) -> ShouldRun {
627+
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
628628
run.path("src/test/rustdoc-js")
629629
}
630630

631-
fn make_run(run: RunConfig) {
631+
fn make_run(run: RunConfig<'_>) {
632632
let compiler = run.builder.compiler(run.builder.top_stage, run.host);
633633
run.builder.ensure(RustdocJSNotStd {
634634
host: run.host,
@@ -637,7 +637,7 @@ impl Step for RustdocJSNotStd {
637637
});
638638
}
639639

640-
fn run(self, builder: &Builder) {
640+
fn run(self, builder: &Builder<'_>) {
641641
if let Some(ref nodejs) = builder.config.nodejs {
642642
builder.ensure(crate::doc::Std {
643643
target: self.target,

0 commit comments

Comments
 (0)