1
Fork 0

Remove crate visibility modifier in libs, tests

This commit is contained in:
Jacob Pratt 2022-05-20 21:06:44 -04:00
parent 49c82f31a8
commit 6970246886
No known key found for this signature in database
GPG key ID: B80E19E4662B5AA4
85 changed files with 1059 additions and 1274 deletions

View file

@ -7,7 +7,7 @@ use std::fmt;
/// Wrapper struct which will emit the HTML-escaped version of the contained
/// string when passed to a format string.
crate struct Escape<'a>(pub &'a str);
pub(crate) struct Escape<'a>(pub &'a str);
impl<'a> fmt::Display for Escape<'a> {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {