diff --git a/minidom/examples/articles.rs b/minidom/examples/articles.rs index 8372df637f6359a0cbf34951da1abc4a28de7867..9bc1f49341b42134bf69c9bf0fea8619d30a3929 100644 --- a/minidom/examples/articles.rs +++ b/minidom/examples/articles.rs @@ -27,8 +27,8 @@ const ARTICLE_NS: &str = "article"; #[derive(Debug)] pub struct Article { - title: String, - body: String, + pub title: String, + pub body: String, } fn main() {