From 1c1c16baecded1a466c7349bdc526e864a632a46 Mon Sep 17 00:00:00 2001 From: Alex Gubarev Date: Tue, 14 Jul 2026 12:21:56 +0300 Subject: [PATCH] Fix `EEx.tokenize/2` missing comment token in result doc --- lib/eex/lib/eex.ex | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/eex/lib/eex.ex b/lib/eex/lib/eex.ex index 06e129a2500..7e3973823ac 100644 --- a/lib/eex/lib/eex.ex +++ b/lib/eex/lib/eex.ex @@ -344,6 +344,7 @@ defmodule EEx do It returns `{:ok, [token]}` where a token is one of: + * `{:comment, content, %{column: column, line: line}}` * `{:text, content, %{column: column, line: line}}` * `{:expr, marker, content, %{column: column, line: line}}` * `{:start_expr, marker, content, %{column: column, line: line}}`