From 3383510b1dc66db5be076bbf759118d1f489d9e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20Ochagav=C3=ADa?= Date: Fri, 17 May 2024 13:28:43 +0200 Subject: [PATCH] Fix copy-paste error (#3634) There was an error in the docs for the installer's `Reporter`. I assume it's a copy-paste error from the `Reporter` in `resolver.rs`. --- crates/uv-installer/src/installer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv-installer/src/installer.rs b/crates/uv-installer/src/installer.rs index 421dcae7d1fe..87519a269f28 100644 --- a/crates/uv-installer/src/installer.rs +++ b/crates/uv-installer/src/installer.rs @@ -79,7 +79,7 @@ impl<'a> Installer<'a> { } pub trait Reporter: Send + Sync { - /// Callback to invoke when a dependency is resolved. + /// Callback to invoke when a dependency is installed. fn on_install_progress(&self, wheel: &CachedDist); /// Callback to invoke when the resolution is complete.