We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
uv python install
1 parent d34455d commit 43e7779Copy full SHA for 43e7779
crates/uv-python/src/downloads.rs
@@ -423,7 +423,7 @@ pub enum DownloadResult {
423
}
424
425
impl ManagedPythonDownload {
426
- /// Return the first [`PythonDownload`] matching a request, if any.
+ /// Return the first [`ManagedPythonDownload`] matching a request, if any.
427
pub fn from_request(
428
request: &PythonDownloadRequest,
429
) -> Result<&'static ManagedPythonDownload, Error> {
@@ -433,7 +433,7 @@ impl ManagedPythonDownload {
433
.ok_or(Error::NoDownloadFound(request.clone()))
434
435
436
- /// Iterate over all [`PythonDownload`]'s.
+ /// Iterate over all [`ManagedPythonDownload`]s.
437
pub fn iter_all() -> impl Iterator<Item = &'static ManagedPythonDownload> {
438
PYTHON_DOWNLOADS
439
.iter()
0 commit comments