rusticata / x509-parser

X.509 parser written in pure Rust. Fast, zero-copy, safe.
Other
206 stars 67 forks source link

docs: fix broken FromDer trait link in README. #139

Closed cpu closed 1 year ago

cpu commented 1 year ago

In ac46206 the traits module and traits::FromDer trait were replaced with a pub use asn1_rs::FromDer; directive in the prelude module, leaving a broken Rustdoc link in the project README.

This commit updates the link target to point to the prelude module's trait instead of the now-removed traits module's trait. Along the way I also removed some superfluous seeming square brackets around X509Certificate::from_der that were being rendered as part of the text.

chifflier commented 1 year ago

Applied, thanks!