From bb920e6e09762c7f327dda54bb77db527e9e659b Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Fri, 2 Jul 2021 11:44:53 -0700 Subject: [PATCH] Fix 'context!()' typo: "supports" -> "supported". --- contrib/dyn_templates/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/dyn_templates/src/lib.rs b/contrib/dyn_templates/src/lib.rs index 5b918913..6ebfc4b9 100644 --- a/contrib/dyn_templates/src/lib.rs +++ b/contrib/dyn_templates/src/lib.rs @@ -467,7 +467,7 @@ impl Sentinel for Template { /// #[get("/")] /// fn render_index(foo: u64) -> Template { /// Template::render("index", context! { -/// // Note that shorthand field syntax is supports. +/// // Note that shorthand field syntax is supported. /// // This is equivalent to `foo: foo,` /// foo, /// bar: "Hello world",