From b06c7b4a93a46960e92b5ba1c359fa2afda71410 Mon Sep 17 00:00:00 2001 From: TORIFUKUKaiou Date: Sat, 1 Apr 2023 13:40:14 +0900 Subject: [PATCH] fix code snippet(headers) of Multipart in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 041bc5c..371e0be 100644 --- a/README.md +++ b/README.md @@ -292,7 +292,7 @@ can do the below: ```elixir binary_file_content = "Something you fetched and now have it in memory" token = "some_token_from_another_request" -headers = ["Authorization": "Bearer #{token}", {"Content-Type", "multipart/form-data"}] +headers = [{"Authorization", "Bearer #{token}"}, {"Content-Type", "multipart/form-data"}] options = [ssl: [{:versions, [:'tlsv1.2']}], recv_timeout: 500] HTTPoison.request(