Skip to content

Commit

Permalink
Doc: quote trait names so they do not look like HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
chifflier committed Feb 23, 2023
1 parent 8bca703 commit 5c2b18a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/asn1_types/sequence/vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ impl<T> Tagged for Vec<T> {
// }
// }

/// manual impl of FromDer, so we do not need to require TryFrom<Any> + CheckDerConstraints
/// manual impl of FromDer, so we do not need to require `TryFrom<Any> + CheckDerConstraints`
impl<'a, T, E> FromDer<'a, E> for Vec<T>
where
T: FromDer<'a, E>,
Expand Down
2 changes: 1 addition & 1 deletion src/asn1_types/set/btreeset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ where
}
}

/// manual impl of FromDer, so we do not need to require TryFrom<Any> + CheckDerConstraints
/// manual impl of FromDer, so we do not need to require `TryFrom<Any> + CheckDerConstraints`
impl<'a, T, E> FromDer<'a, E> for BTreeSet<T>
where
T: FromDer<'a, E>,
Expand Down
2 changes: 1 addition & 1 deletion src/asn1_types/set/hashset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ where
}
}

/// manual impl of FromDer, so we do not need to require TryFrom<Any> + CheckDerConstraints
/// manual impl of FromDer, so we do not need to require `TryFrom<Any> + CheckDerConstraints`
impl<'a, T, E> FromDer<'a, E> for HashSet<T>
where
T: FromDer<'a, E>,
Expand Down

0 comments on commit 5c2b18a

Please sign in to comment.