diff --git a/tvix/nix-compat/src/derivation/parse_error.rs b/tvix/nix-compat/src/derivation/parse_error.rs index 34a9c9fd9..26df13f57 100644 --- a/tvix/nix-compat/src/derivation/parse_error.rs +++ b/tvix/nix-compat/src/derivation/parse_error.rs @@ -70,8 +70,8 @@ impl From> for NomError { } /// This essentially implements -/// From>> for nom::Err>, -/// which we can't because nom::Err<_> is a foreign type. +/// `From>>` for `nom::Err>`, +/// which we can't because `nom::Err<_>` is a foreign type. pub(crate) fn into_nomerror(e: nom::Err>) -> nom::Err> { match e { nom::Err::Incomplete(n) => nom::Err::Incomplete(n),