From 9725134599e8e4c8f7af23350c71cee290ef9bcf Mon Sep 17 00:00:00 2001 From: Benjamin Milde Date: Thu, 8 Jan 2026 17:27:14 +0100 Subject: [PATCH] Fix typespec of LazyHTML.attributes --- lib/lazy_html.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lazy_html.ex b/lib/lazy_html.ex index b6a9907..dfd3398 100644 --- a/lib/lazy_html.ex +++ b/lib/lazy_html.ex @@ -496,7 +496,7 @@ defmodule LazyHTML do ] ''' - @spec attributes(t()) :: list({String.t(), String.t()}) + @spec attributes(t()) :: list(list({String.t(), String.t()})) def attributes(%LazyHTML{} = lazy_html) do LazyHTML.NIF.attributes(lazy_html) end