summaryrefslogtreecommitdiffstats
path: root/vendor/gix-chunk/src
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
commitdc0db358abe19481e475e10c32149b53370f1a1c (patch)
treeab8ce99c4b255ce46f99ef402c27916055b899ee /vendor/gix-chunk/src
parentReleasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff)
downloadrustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz
rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/gix-chunk/src')
-rw-r--r--vendor/gix-chunk/src/file/decode.rs2
-rw-r--r--vendor/gix-chunk/src/file/index.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/vendor/gix-chunk/src/file/decode.rs b/vendor/gix-chunk/src/file/decode.rs
index 1543ac9be..22bdc169b 100644
--- a/vendor/gix-chunk/src/file/decode.rs
+++ b/vendor/gix-chunk/src/file/decode.rs
@@ -1,7 +1,7 @@
use std::{convert::TryInto, ops::Range};
mod error {
- /// The value returned by [crate::FileRef::from_bytes()
+ /// The value returned by [`crate::file::Index::from_bytes()`]
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
diff --git a/vendor/gix-chunk/src/file/index.rs b/vendor/gix-chunk/src/file/index.rs
index 5b59f6767..c9211ab6f 100644
--- a/vendor/gix-chunk/src/file/index.rs
+++ b/vendor/gix-chunk/src/file/index.rs
@@ -6,7 +6,7 @@ use crate::file::Index;
pub mod offset_by_kind {
use std::fmt::{Display, Formatter};
- /// The error returned by [Index::offset_by_kind()][super::Index::offset_by_id()].
+ /// The error returned by [`Index::offset_by_id()`][super::Index::offset_by_id()].
#[allow(missing_docs)]
#[derive(Debug)]
pub struct Error {
@@ -28,7 +28,7 @@ pub mod offset_by_kind {
///
pub mod data_by_kind {
- /// The error returned by [Index::data_by_kind()][super::Index::data_by_id()].
+ /// The error returned by [`Index::data_by_id()`][super::Index::data_by_id()].
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {