diff --git a/minidom/examples/articles.rs b/minidom/examples/articles.rs index 8372df63..9bc1f493 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() {