Skip to content

Commit 2f44bb4

Browse files
committed
removes extra newlines in docstrings
1 parent c35a641 commit 2f44bb4

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

runtime/Stdlib_Array.resi

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ type t<'a> = array<'a>
1111
type arrayLike<'a>
1212

1313
/**
14-
`fromIterator(iterator)`
15-
16-
Creates an array from the provided `iterator`
14+
`fromIterator(iterator)` creates an array from the provided `iterator`
1715
1816
## Examples
1917
@@ -35,9 +33,7 @@ external fromIterator: Stdlib_Iterator.t<'a> => array<'a> = "Array.from"
3533
external fromArrayLikeWithMap: (arrayLike<'a>, 'a => 'b) => array<'b> = "Array.from"
3634

3735
/**
38-
`make(~length, init)`
39-
40-
Creates an array of length `length` initialized with the value of `init`.
36+
`make(~length, init)` creates an array of length `length` initialized with the value of `init`.
4137
4238
## Examples
4339

0 commit comments

Comments
 (0)