We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9ecf46 commit d4f572aCopy full SHA for d4f572a
CHANGELOG.md
@@ -209,21 +209,21 @@
209
this code:
210
211
```gleam
212
- pub fn to_list(entries: List(#(key, value))) -> Dict(key, value) {
+ pub fn from_list(entries: List(#(key, value))) -> Dict(key, value) {
213
...
214
}
215
```
216
217
Previously would have been printed as:
218
219
220
- pub fn to_list(entries: List(#(a, b))) -> Dict(a, b)
+ pub fn from_list(entries: List(#(a, b))) -> Dict(a, b)
221
222
223
But now is rendered as the following:
224
225
226
- pub fn to_list(entries: List(#(key, value))) -> Dict(key, value)
+ pub fn from_list(entries: List(#(key, value))) -> Dict(key, value)
227
228
229
([Surya Rose](https://github.com/GearsDatapacks))
0 commit comments