Skip to content

Commit 8f401e3

Browse files
milkcocoabenwilson512
authored andcommitted
Fix README typo. (#178)
1 parent 3f629f4 commit 8f401e3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ You then have 4 ways you can choose to execute that operation:
1616

1717
```elixir
1818
# Normal
19-
S3.list_buckets |> ExAw.request #=> {:ok, response}
19+
S3.list_buckets |> ExAws.request #=> {:ok, response}
2020
# With per request configuration overrides
21-
S3.list_buckets |> ExAw.request(config) #=> {:ok, response}
21+
S3.list_buckets |> ExAws.request(config) #=> {:ok, response}
2222

2323
# Raise on error, return successful responses directly
24-
S3.list_buckets |> ExAw.request! #=> response
25-
S3.list_buckets |> ExAw.request!(config) #=> response
24+
S3.list_buckets |> ExAws.request! #=> response
25+
S3.list_buckets |> ExAws.request!(config) #=> response
2626
```
2727

2828
Certain operations also support Elixir streams:

0 commit comments

Comments
 (0)