From 8992f5524c2109f0a693ccfeb8251744f12c1f06 Mon Sep 17 00:00:00 2001 From: Domenico Date: Fri, 27 Dec 2024 19:43:00 +0100 Subject: [PATCH] fix: typo in uv main (#10205) --- crates/uv/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv/src/lib.rs b/crates/uv/src/lib.rs index 6dd0aa5c0..e4ec66076 100644 --- a/crates/uv/src/lib.rs +++ b/crates/uv/src/lib.rs @@ -1704,7 +1704,7 @@ async fn run_project( /// uv binary interface is the official public API. When using this entry /// point, uv assumes it is running in a process it controls and that the /// entire process lifetime is managed by uv. Unexpected behavior may be -/// encountered if this entry pointis called multiple times in a single process. +/// encountered if this entry point is called multiple times in a single process. pub fn main(args: I) -> ExitCode where I: IntoIterator,