Skip to content

Commit f8bd4b0

Browse files
committed
docs: remove reference to Bytes
1 parent 48b901b commit f8bd4b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

postgresql_archive/src/archive.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ fn acquire_lock(out_dir: &Path) -> Result<PathBuf> {
9595
Err(Unexpected("Failed to acquire lock".to_string()))
9696
}
9797

98-
/// Extracts the compressed tar [bytes](Bytes) to the [out_dir](Path).
98+
/// Extracts the compressed tar `bytes` to the [out_dir](Path).
9999
///
100100
/// # Errors
101101
/// Returns an error if the extraction fails.

postgresql_archive/src/blocking/archive.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pub fn get_archive(url: &str, version_req: &VersionReq) -> crate::Result<(Versio
3030
.block_on(async move { crate::get_archive(url, version_req).await })
3131
}
3232

33-
/// Extracts the compressed tar [bytes](Bytes) to the [out_dir](Path).
33+
/// Extracts the compressed tar `bytes` to the [out_dir](Path).
3434
///
3535
/// # Errors
3636
/// Returns an error if the extraction fails.

0 commit comments

Comments
 (0)