aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/entity
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2026-01-19 19:32:41 +0000
committergingerBill <gingerBill@users.noreply.github.com>2026-01-19 19:32:41 +0000
commit0de3d872d169f58705b387250df12e8e92b13c54 (patch)
treeeea1ae4b082ce22e975a0164970d3153a57ce4a3 /core/encoding/entity
parente52601672f625941a06513cc736e24649589b6a0 (diff)
Keep -vet happy
Diffstat (limited to 'core/encoding/entity')
-rw-r--r--core/encoding/entity/entity.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/entity/entity.odin b/core/encoding/entity/entity.odin
index bc3a79635..a756bdf39 100644
--- a/core/encoding/entity/entity.odin
+++ b/core/encoding/entity/entity.odin
@@ -278,7 +278,7 @@ escape_html :: proc(s: string, allocator := context.allocator, loc := #caller_lo
extra_bytes_needed := 0
- for c, i in b {
+ for c in b {
switch c {
case '&': extra_bytes_needed += 4
case '\'': extra_bytes_needed += 4