Skip to content
Snippets Groups Projects
Commit e2e64ee3 authored by Valentin Perrelle's avatar Valentin Perrelle
Browse files

[Dome] Fix comments line length

parent 5f4f5602
Branches stable/copper
Tags 0.7
No related merge requests found
...@@ -331,8 +331,8 @@ export function jArray<A>(fn: Decoder<A>): Decoder<A[]> { ...@@ -331,8 +331,8 @@ export function jArray<A>(fn: Decoder<A>): Decoder<A[]> {
/** /**
Apply the decoder on each item of a JSON array, discarding Apply the decoder on each item of a JSON array, discarding
all JsonError exceptions from decoded items. The decoded JSON must still be an array, all JsonError exceptions from decoded items. The decoded JSON must still be
otherwise a JsonError is raised. an array, otherwise a JsonError is raised.
*/ */
export function jList<A>(fn: Decoder<A>): Decoder<A[]> { export function jList<A>(fn: Decoder<A>): Decoder<A[]> {
return (js: json) => { return (js: json) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment