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.