diff --git a/lib/beacon/application.ex b/lib/beacon/application.ex index e49392835..2c48fcc36 100644 --- a/lib/beacon/application.ex +++ b/lib/beacon/application.ex @@ -7,7 +7,7 @@ defmodule Beacon.Application do def start(_type, _args) do # Starts just the minimum required apps for beacon to work. # - Keep loading sites as children of main sup to have control of where and when to trigger it. - # - Loading repo allows to run seeds without trigering module and css recompilation. + # - Loading repo allows to run seeds without triggering module and css recompilation. children = [ Beacon.Registry, {Phoenix.PubSub, name: Beacon.PubSub}, diff --git a/lib/beacon/content.ex b/lib/beacon/content.ex index cc25c100b..f35eb53d2 100644 --- a/lib/beacon/content.ex +++ b/lib/beacon/content.ex @@ -454,7 +454,7 @@ defmodule Beacon.Content do * `title` - String.t() * `description` - String.t() * `template` - String.t() - * `meta_tags` - list(map()) eg: `[%{"property" => "og:title", "content" => "My New Siste"}]` + * `meta_tags` - list(map()) eg: `[%{"property" => "og:title", "content" => "My New Site"}]` See `Beacon.Content.Page` for more info. diff --git a/lib/beacon/lifecycle/template.ex b/lib/beacon/lifecycle/template.ex index 81c77aa33..ab83fc578 100644 --- a/lib/beacon/lifecycle/template.ex +++ b/lib/beacon/lifecycle/template.ex @@ -70,7 +70,7 @@ defmodule Beacon.Lifecycle.Template do def validate_output!(lifecycle, _site, _type) do raise Beacon.LoaderError, """ - excpected output to be a %Phoenix.LiveView.Rendered{} struct + expected output to be a %Phoenix.LiveView.Rendered{} struct Got: diff --git a/lib/beacon/template/heex/json_encoder.ex b/lib/beacon/template/heex/json_encoder.ex index ef6a1abf8..c5a9b5a72 100644 --- a/lib/beacon/template/heex/json_encoder.ex +++ b/lib/beacon/template/heex/json_encoder.ex @@ -13,7 +13,7 @@ defmodule Beacon.Template.HEEx.JSONEncoder do ## Data Structure - The encoded data structured emitted at the end is a list of tokens componsed of either a `heex_node` or a `eex_node`, + The encoded data structured emitted at the end is a list of tokens composed of either a `heex_node` or a `eex_node`, as specified below: tokens = [heex_node() | eex_node() | eex_block_node()]