diff --git a/README.md b/README.md index b18e6b24..f6b9c0be 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # rinja -`rinja` is based on [Askama](https://crates.io/crates/askama). +**Rinja** is based on [Askama](https://crates.io/crates/askama). It implements a template rendering engine based on [Jinja](https://jinja.palletsprojects.com/), and generates type-safe Rust code from your templates at compile time based on a user-defined `struct` to hold the template's context. diff --git a/book/src/template_syntax.md b/book/src/template_syntax.md index 89c3096b..b50c4024 100644 --- a/book/src/template_syntax.md +++ b/book/src/template_syntax.md @@ -296,7 +296,7 @@ struct MyTemplate { ## Calling functions -If you only provide a function name, `rinja` will assume it's a method. If +If you only provide a function name, rinja will assume it's a method. If you want to call a method, you will need to use a path instead: ```jinja