From 0ef925aa922c6a33d1d221f5f59f33fed0e5bc76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20Ochagav=C3=ADa?= Date: Tue, 14 May 2024 13:57:38 +0200 Subject: [PATCH] Fix typo in traits.rs (#3574) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Fixes a typo in a comment ## Test Plan I assume there's no need to test comment changes, other than having a human check they make sense. That's what this PR is for 😉 --- crates/uv-types/src/traits.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv-types/src/traits.rs b/crates/uv-types/src/traits.rs index f074f12ec..d85a5ec17 100644 --- a/crates/uv-types/src/traits.rs +++ b/crates/uv-types/src/traits.rs @@ -46,7 +46,7 @@ use crate::BuildIsolation; /// ``` /// /// Put in a different way, the types here allow `uv-resolver` to depend on `uv-build` and -/// `uv-build` to depend on `uv-resolver` which having actual crate dependencies between +/// `uv-build` to depend on `uv-resolver` without having actual crate dependencies between /// them. pub trait BuildContext { type SourceDistBuilder: SourceBuildTrait;