Skip to content

Commit eac9796

Browse files
committed
docs: fix all6 and allSettled6 doc comments
- p3 was missing from parameter list (had p1, p2, p4, p5, p6) - malformed comment closing ")*/" fixed to "*/"
1 parent bd58ddb commit eac9796

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/Core__Promise.resi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,8 @@ external all4: ((t<'a>, t<'b>, t<'c>, t<'d>)) => t<('a, 'b, 'c, 'd)> = "all"
341341
external all5: ((t<'a>, t<'b>, t<'c>, t<'d>, t<'e>)) => t<('a, 'b, 'c, 'd, 'e)> = "all"
342342

343343
/**
344-
`all6((p1, p2, p4, p5, p6))`. Like `all()`, but with a fixed size tuple of 6
345-
")*/
344+
`all6((p1, p2, p3, p4, p5, p6))`. Like `all()`, but with a fixed size tuple of 6
345+
*/
346346
@scope("Promise")
347347
@val
348348
external all6: ((t<'a>, t<'b>, t<'c>, t<'d>, t<'e>, t<'f>)) => t<('a, 'b, 'c, 'd, 'e, 'f)> = "all"
@@ -425,8 +425,8 @@ external allSettled5: ((t<'a>, t<'b>, t<'c>, t<'d>, t<'e>)) => t<(
425425
)> = "allSettled"
426426

427427
/**
428-
`allSettled6((p1, p2, p4, p5, p6))`. Like `allSettled()`, but with a fixed size tuple of 6
429-
")*/
428+
`allSettled6((p1, p2, p3, p4, p5, p6))`. Like `allSettled()`, but with a fixed size tuple of 6
429+
*/
430430
@scope("Promise")
431431
@val
432432
external allSettled6: ((t<'a>, t<'b>, t<'c>, t<'d>, t<'e>, t<'f>)) => t<(

0 commit comments

Comments
 (0)