diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 03:57:31 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 03:57:31 +0000 |
commit | dc0db358abe19481e475e10c32149b53370f1a1c (patch) | |
tree | ab8ce99c4b255ce46f99ef402c27916055b899ee /vendor/gix-ref/src/name.rs | |
parent | Releasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff) | |
download | rustc-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-ref/src/name.rs')
-rw-r--r-- | vendor/gix-ref/src/name.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/gix-ref/src/name.rs b/vendor/gix-ref/src/name.rs index 5c22069a9..b21fdaf56 100644 --- a/vendor/gix-ref/src/name.rs +++ b/vendor/gix-ref/src/name.rs @@ -4,7 +4,7 @@ use gix_object::bstr::{BStr, BString, ByteSlice, ByteVec}; use crate::{Category, FullName, FullNameRef, PartialName, PartialNameRef}; -/// The error used in the [`PartialNameRef`][super::PartialNameRef]::try_from(…) implementations. +/// The error used in the [`PartialNameRef`][super::PartialNameRef]`::try_from`(…) implementations. pub type Error = gix_validate::reference::name::Error; impl<'a> Category<'a> { @@ -260,7 +260,7 @@ impl convert::TryFrom<BString> for PartialName { } } -/// Note that this method is disagreeing with gix_validate as it allows dashes '-' for some reason. +/// Note that this method is disagreeing with `gix_validate` as it allows dashes '-' for some reason. /// Since partial names cannot be created with dashes inside we adjusted this as it's probably unintended or git creates pseudo-refs /// which wouldn't pass its safety checks. pub(crate) fn is_pseudo_ref<'a>(name: impl Into<&'a BStr>) -> bool { |