fix: internal

This commit is contained in:
Sofia Rodrigues
2026-03-16 10:56:34 -03:00
parent a39a0575a0
commit 40d55c1eb6
2 changed files with 3 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ namespace Std.Http
set_option linter.all true
open Internal
open Std Internal
/--
A structure for managing HTTP headers as key-value pairs.

View File

@@ -20,7 +20,7 @@ The implementation stores entries in a flat array for iteration and an index Has
for fast key lookups. Each key always has at least one associated value.
-/
namespace Std
namespace Std.Internal
open Std Internal
@@ -278,5 +278,4 @@ instance [EquivBEq α] [LawfulHashable α] : Union (MultiMap α β) :=
instance [Monad m] : ForIn m (MultiMap α β) (α × β) where
forIn map b f := forIn map.entries b f
end MultiMap
end Std
end Std.Internal.MultiMap