Skip to content

Commit d4f572a

Browse files
committed
Correct changelog
1 parent a9ecf46 commit d4f572a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -209,21 +209,21 @@
209209
this code:
210210

211211
```gleam
212-
pub fn to_list(entries: List(#(key, value))) -> Dict(key, value) {
212+
pub fn from_list(entries: List(#(key, value))) -> Dict(key, value) {
213213
...
214214
}
215215
```
216216

217217
Previously would have been printed as:
218218

219219
```gleam
220-
pub fn to_list(entries: List(#(a, b))) -> Dict(a, b)
220+
pub fn from_list(entries: List(#(a, b))) -> Dict(a, b)
221221
```
222222

223223
But now is rendered as the following:
224224

225225
```gleam
226-
pub fn to_list(entries: List(#(key, value))) -> Dict(key, value)
226+
pub fn from_list(entries: List(#(key, value))) -> Dict(key, value)
227227
```
228228

229229
([Surya Rose](https://github.com/GearsDatapacks))

0 commit comments

Comments
 (0)