Skip to content

Commit 5a71ce0

Browse files
authored
Fix wrong module attribute on Calendar.ISO (#11326)
1 parent 2924d01 commit 5a71ce0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/elixir/lib/calendar/iso.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,9 +263,9 @@ defmodule Calendar.ISO do
263263
"""
264264
@doc since: "1.10.0"
265265
@impl true
266-
@callback parse_time(String.t()) ::
267-
{:ok, {hour, minute, second, microsecond}}
268-
| {:error, atom}
266+
@spec parse_time(String.t()) ::
267+
{:ok, {hour, minute, second, microsecond}}
268+
| {:error, atom}
269269
def parse_time(string) when is_binary(string),
270270
do: parse_time(string, :extended)
271271

0 commit comments

Comments
 (0)