diff --git a/postgresql_archive/src/archive.rs b/postgresql_archive/src/archive.rs index 01d95f5..2b381ad 100644 --- a/postgresql_archive/src/archive.rs +++ b/postgresql_archive/src/archive.rs @@ -95,7 +95,7 @@ fn acquire_lock(out_dir: &Path) -> Result { Err(Unexpected("Failed to acquire lock".to_string())) } -/// Extracts the compressed tar [bytes](Bytes) to the [out_dir](Path). +/// Extracts the compressed tar `bytes` to the [out_dir](Path). /// /// # Errors /// Returns an error if the extraction fails. diff --git a/postgresql_archive/src/blocking/archive.rs b/postgresql_archive/src/blocking/archive.rs index 9d02771..7173e08 100644 --- a/postgresql_archive/src/blocking/archive.rs +++ b/postgresql_archive/src/blocking/archive.rs @@ -30,7 +30,7 @@ pub fn get_archive(url: &str, version_req: &VersionReq) -> crate::Result<(Versio .block_on(async move { crate::get_archive(url, version_req).await }) } -/// Extracts the compressed tar [bytes](Bytes) to the [out_dir](Path). +/// Extracts the compressed tar `bytes` to the [out_dir](Path). /// /// # Errors /// Returns an error if the extraction fails.