Skip to content

Commit 43e7779

Browse files
committed
Refactor uv python install
1 parent d34455d commit 43e7779

File tree

3 files changed

+302
-191
lines changed

3 files changed

+302
-191
lines changed

crates/uv-python/src/downloads.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ pub enum DownloadResult {
423423
}
424424

425425
impl ManagedPythonDownload {
426-
/// Return the first [`PythonDownload`] matching a request, if any.
426+
/// Return the first [`ManagedPythonDownload`] matching a request, if any.
427427
pub fn from_request(
428428
request: &PythonDownloadRequest,
429429
) -> Result<&'static ManagedPythonDownload, Error> {
@@ -433,7 +433,7 @@ impl ManagedPythonDownload {
433433
.ok_or(Error::NoDownloadFound(request.clone()))
434434
}
435435

436-
/// Iterate over all [`PythonDownload`]'s.
436+
/// Iterate over all [`ManagedPythonDownload`]s.
437437
pub fn iter_all() -> impl Iterator<Item = &'static ManagedPythonDownload> {
438438
PYTHON_DOWNLOADS
439439
.iter()

0 commit comments

Comments
 (0)