diff --git a/guides/get_started/installation.md b/guides/get_started/installation.md index 221bf238..a2901f95 100644 --- a/guides/get_started/installation.md +++ b/guides/get_started/installation.md @@ -172,16 +172,17 @@ defmodule MyAppWeb.Live.PostLive do @impl Backpex.LiveResource def fields do - [ - title: %{ - module: Backpex.Fields.Text, - label: "Title" - }, - views: %{ - module: Backpex.Fields.Number, - label: "Views" - } - ] + [ + title: %{ + module: Backpex.Fields.Text, + label: "Title" + }, + views: %{ + module: Backpex.Fields.Number, + label: "Views" + } + ] + end end ```