From 7a505875af6a1cee1536e516528f5be914df1f3f Mon Sep 17 00:00:00 2001 From: Mitchell Hanberg Date: Sat, 21 Jan 2023 07:08:22 -0500 Subject: [PATCH] fix(docs): typos --- README.md | 7 +++++-- guides/your-first-template.md | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4c2f457..0f1fa17 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,12 @@ -# ![](temple-github-image.png) +![Temple](temple-github-image.png) + [![Actions Status](https://github.com/mhanberg/temple/workflows/CI/badge.svg)](https://github.com/mhanberg/temple/actions) [![Hex.pm](https://img.shields.io/hexpm/v/temple.svg)](https://hex.pm/packages/temple) -> You are looking at the README for the main branch. The README for the latest stable release is located [here](https://github.com/mhanberg/temple/tree/v0.9.0). +> You are looking at the README for the main branch. The README for the latest stable release is located [here](https://github.com/mhanberg/temple/tree/v0.11.0). + +# Temple Temple is an Elixir DSL for writing HTML and SVG. diff --git a/guides/your-first-template.md b/guides/your-first-template.md index 4ce6b85..69a4114 100644 --- a/guides/your-first-template.md +++ b/guides/your-first-template.md @@ -128,7 +128,7 @@ Temple leverages `Phoenix.HTML.attributes_escape/1` internally, so you can refer To render dynamic attributes into a tag, you can pass them with the reserved attribute `:rest!`. ```elixir -assigns = % +assigns = %{ data: [data_foo: "hi"] }