From a555c8cbf82169f290e6f72b81c3911e6093c900 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Mon, 4 Sep 2017 11:39:31 +0800 Subject: [PATCH] phoenix: fix ellipses --- phoenix.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phoenix.md b/phoenix.md index 76520af59..a2aadb4bc 100644 --- a/phoenix.md +++ b/phoenix.md @@ -60,7 +60,7 @@ See: [Adding pages](https://hexdocs.pm/phoenix/adding_pages.html) _(hexdocs.pm)_ ```bash $ mix ecto.gen.migration update_posts_table creating priv/repo/migrations/20160602085927_update_posts_table.exs - ... + ··· ``` ```elixir @@ -107,7 +107,7 @@ conn.request_path #=> "/posts/1" ```elixir conn |> put_status(202) -|> html("...") +|> html("···") |> json(%{ message: "Hello" }) |> text("Hello") |> redirect(to: "/foo")