phoenix: fix ellipses
This commit is contained in:
parent
5bb56dc3bc
commit
a555c8cbf8
|
@ -60,7 +60,7 @@ See: [Adding pages](https://hexdocs.pm/phoenix/adding_pages.html) _(hexdocs.pm)_
|
||||||
```bash
|
```bash
|
||||||
$ mix ecto.gen.migration update_posts_table
|
$ mix ecto.gen.migration update_posts_table
|
||||||
creating priv/repo/migrations/20160602085927_update_posts_table.exs
|
creating priv/repo/migrations/20160602085927_update_posts_table.exs
|
||||||
...
|
···
|
||||||
```
|
```
|
||||||
|
|
||||||
```elixir
|
```elixir
|
||||||
|
@ -107,7 +107,7 @@ conn.request_path #=> "/posts/1"
|
||||||
```elixir
|
```elixir
|
||||||
conn
|
conn
|
||||||
|> put_status(202)
|
|> put_status(202)
|
||||||
|> html("<html><head>...")
|
|> html("<html><head>···")
|
||||||
|> json(%{ message: "Hello" })
|
|> json(%{ message: "Hello" })
|
||||||
|> text("Hello")
|
|> text("Hello")
|
||||||
|> redirect(to: "/foo")
|
|> redirect(to: "/foo")
|
||||||
|
|
Loading…
Reference in New Issue