clippy --fix

Ben Kunkle created

Change summary

tooling/xtask/src/tasks/workflows/deploy_docs.rs | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)

Detailed changes

tooling/xtask/src/tasks/workflows/deploy_docs.rs 🔗

@@ -95,10 +95,7 @@ fn docs_build_steps(
             .add_step(steps::script("./script/generate-action-metadata"))
             .add_step(lychee_link_check("./docs/src/**/*"))
             .add_step(install_mdbook())
-            .add_step(build_docs_book(
-                docs_channel.to_string(),
-                site_url.to_string(),
-            ))
+            .add_step(build_docs_book(docs_channel, site_url))
             .add_step(lychee_link_check(&format!("{BUILD_OUTPUT_DIR}/docs"))),
     )
 }