From de741328a32556c5d83a05fe262995d06ccadbab Mon Sep 17 00:00:00 2001 From: Nick Embrey Date: Sat, 6 Jun 2020 13:39:05 -0700 Subject: [PATCH] add Genie.Renderer to BooksController example in Intermediate Topics guide --- docs/guides/Working_With_Genie_Apps_Intermediary_Topics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/Working_With_Genie_Apps_Intermediary_Topics.md b/docs/guides/Working_With_Genie_Apps_Intermediary_Topics.md index 2008b1ca8..0950fb162 100644 --- a/docs/guides/Working_With_Genie_Apps_Intermediary_Topics.md +++ b/docs/guides/Working_With_Genie_Apps_Intermediary_Topics.md @@ -66,7 +66,7 @@ We should also update the `BooksController.create` method to do something useful ```julia # BooksController.jl -using Genie.Router +using Genie.Router, Genie.Renderer function create() Book(title = @params(:book_title), author = @params(:book_author)) |> save && redirect(:get_bgbooks)