Alchemy.Embed.title

You're seeing just the function title, go back to Alchemy.Embed module for more information.
Link to this function

title(embed, string)

Specs

title(t(), String.t()) :: t()

Adds a title to an embed.

Examples

Cogs.def title(string) do
  %Embed{}
  |> title(string)
  |> Embed.send
end