diff options
Diffstat (limited to '')
-rw-r--r-- | askama_shared/src/generator.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/askama_shared/src/generator.rs b/askama_shared/src/generator.rs index 63ebeb3..a1b090d 100644 --- a/askama_shared/src/generator.rs +++ b/askama_shared/src/generator.rs @@ -234,7 +234,7 @@ impl<'a> Generator<'a> { // Defines the `TraitFromPathName` trait. fn define_trait(&mut self, state: &'a State) { - self.writeln(&format!("trait {} {{", state.trait_name)); + self.writeln(&format!("pub trait {} {{", state.trait_name)); self.write_block_defs(state); self.writeln(&format!( "fn render_trait_into(&self, timpl: &{}, writer: &mut ::std::fmt::Write) \ |