summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHubert Chathi <hubert@uhoreg.ca>2020-09-17 22:55:21 -0400
committerHubert Chathi <hubert@uhoreg.ca>2020-09-17 22:55:21 -0400
commit06c314dcc5d01cd172a8dcbd44756be10f86c597 (patch)
treece6bfe15387999965ce4ddf3b4aafa2bed583577 /lib
parentimprove endpoint protocol and HttpSpec (diff)
doc improvements
Diffstat (limited to 'lib')
-rw-r--r--lib/polyjuice/client/endpoint.ex7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/polyjuice/client/endpoint.ex b/lib/polyjuice/client/endpoint.ex
index f41b5ec..66a97a9 100644
--- a/lib/polyjuice/client/endpoint.ex
+++ b/lib/polyjuice/client/endpoint.ex
@@ -13,8 +13,6 @@
# limitations under the License.
defmodule Polyjuice.Client.Endpoint do
- @moduledoc false
-
defmodule HttpSpec do
@typedoc """
The description of how to handle the endpoint.
@@ -178,6 +176,11 @@ defmodule Polyjuice.Client.Endpoint do
end
end
+ @spec get_header(
+ headers :: list({String.t(), String.t()}),
+ name :: String.t(),
+ default :: any
+ ) :: any
def get_header(headers, name, default \\ nil) do
name = String.downcase(name, :ascii)