@@ -50,8 +50,8 @@ defmodule Plug.Conn.Adapter do
50
50
test implementation returns the actual body so it can
51
51
be used during testing.
52
52
53
- Webservers must send a `{:plug_conn, :already_sent}`
54
- message to the process that called `Plug.Conn.Adapter.conn/5`.
53
+ Webservers must send a `{:plug_conn, :sent}` message to the
54
+ process that called `Plug.Conn.Adapter.conn/5`.
55
55
"""
56
56
@ callback send_resp (
57
57
payload ,
@@ -73,8 +73,8 @@ defmodule Plug.Conn.Adapter do
73
73
test implementation returns the actual body so it can
74
74
be used during testing.
75
75
76
- Webservers must send a `{:plug_conn, :already_sent}`
77
- message to the process that called `Plug.Conn.Adapter.conn/5`.
76
+ Webservers must send a `{:plug_conn, :sent}` message to the
77
+ process that called `Plug.Conn.Adapter.conn/5`.
78
78
"""
79
79
@ callback send_file (
80
80
payload ,
@@ -96,8 +96,8 @@ defmodule Plug.Conn.Adapter do
96
96
body returned by subsequent calls to the test implementation's
97
97
`chunk/2` function
98
98
99
- Webservers must send a `{:plug_conn, :already_sent}`
100
- message to the process that called `Plug.Conn.Adapter.conn/5`.
99
+ Webservers must send a `{:plug_conn, :sent}` message to the
100
+ process that called `Plug.Conn.Adapter.conn/5`.
101
101
"""
102
102
@ callback send_chunked ( payload , status :: Conn . status ( ) , headers :: Conn . headers ( ) ) ::
103
103
{ :ok , sent_body :: binary | nil , payload }
0 commit comments