From 8e6ce2968331e127b08c61232769a115612047d3 Mon Sep 17 00:00:00 2001 From: Mitchell Hanberg Date: Tue, 30 Sep 2025 14:44:00 -0400 Subject: [PATCH] docs: fix code snippet typos The strings were missing end quotes --- lib/aws/client.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/aws/client.ex b/lib/aws/client.ex index 37b28643..369a1e57 100644 --- a/lib/aws/client.ex +++ b/lib/aws/client.ex @@ -156,10 +156,10 @@ defmodule AWS.Client do ## Examples iex> put_endpoint(%Client{}, "example.com") - %Client{endpoint: "example.com} + %Client{endpoint: "example.com"} iex> put_endpoint(%Client{}, {:keep_prefixes, "example.com"}) - %Client{endpoint: {:keep_prefixes, "example.com}} + %Client{endpoint: {:keep_prefixes, "example.com"}} iex> put_endpoint(%Client{}, fn opts -> Enum.join(["baz", opts.region, "foo.com"], ".") end) %Client{endpoint: #Function<>}