Skip to content

Commit

Permalink
docs: remove reference to Bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
brianheineman committed Jun 29, 2024
1 parent 48b901b commit f8bd4b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion postgresql_archive/src/archive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ fn acquire_lock(out_dir: &Path) -> Result<PathBuf> {
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.
Expand Down
2 changes: 1 addition & 1 deletion postgresql_archive/src/blocking/archive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit f8bd4b0

Please sign in to comment.