phoenix: fix ellipses

This commit is contained in:
Rico Sta. Cruz 2017-09-04 11:39:31 +08:00
parent 5bb56dc3bc
commit a555c8cbf8
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
1 changed files with 2 additions and 2 deletions

View File

@ -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><head>...")
|> html("<html><head>···")
|> json(%{ message: "Hello" })
|> text("Hello")
|> redirect(to: "/foo")