From f18d48a3c25c3fbeb903f38f05039f8865ec6417 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Wed, 29 Apr 2026 20:53:07 -0400 Subject: [PATCH] fix: wording --- adr/001_interface_design.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/adr/001_interface_design.md b/adr/001_interface_design.md index 7afe20a..3004d5a 100644 --- a/adr/001_interface_design.md +++ b/adr/001_interface_design.md @@ -108,8 +108,7 @@ In short, this interface defines expected size, but `Capacity()` defines capacit
m := map[K]V{...} -This has no simple analog. -The closest is: +This has no simple analog, the closest being: ```go m := New[K, V]() @@ -118,7 +117,7 @@ for k, v := range startingEntries { } ``` -While it is idiomatic, it is far less ergonomic. +It is idiomatic, but far less ergonomic.