diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ struct HelloTemplate<'a> { // the name of the struct can be anything fn main() { let hello = HelloTemplate { name: "world" }; // instantiate your struct - println!("{}", hello.render()); // then render it. + println!("{}", hello.render().unwrap()); // then render it. } ``` |