From eebcb4c9bacd3d7dd9e15a05b45e8b3a8db567e8 Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Wed, 1 Jun 2022 15:19:55 -0600 Subject: [PATCH] Fix `URI.new!/1` doc typo --- lib/elixir/lib/uri.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/elixir/lib/uri.ex b/lib/elixir/lib/uri.ex index 5036e5ac049..25238aec4f0 100644 --- a/lib/elixir/lib/uri.ex +++ b/lib/elixir/lib/uri.ex @@ -588,7 +588,7 @@ defmodule URI do end @doc """ - Similar to `new/0` but raises `URI.Error` if an invalid string is given. + Similar to `new/1` but raises `URI.Error` if an invalid string is given. ## Examples