summaryrefslogtreecommitdiffstats
path: root/vendor/gix-chunk/src
diff options
context:
space:
mode:
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 {