Skip to content

Commit f9b4c3a

Browse files
authored
language.html.md - missing new line (#1097)
these are two different points... looks like a new line is missing
1 parent dbbb088 commit f9b4c3a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

doc/ref/language.html.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,9 @@ The simplest way of creating an array is *an array literal*. It is simply a comm
213213

214214
The most flexible way of creating an array is `std.makeArray(sz, func)`. It takes the size of the array to construct and a function which takes an index `i` and returns the `i`-th element. It is possible to build all other array functionality using this function. In practice, using more specialized functions is usually (but not always) more handy and results in a more efficient program.
215215

216-
Arrays can be concatenated using the operator `+`. Arrays `a` and `b` are equal if they have equal length and for all indexes `i`, `a[i] == b[i]`.
216+
Arrays can be concatenated using the operator `+`.
217+
218+
Arrays `a` and `b` are equal if they have equal length and for all indexes `i`, `a[i] == b[i]`.
217219

218220
The comparison of arrays is lexicographic, so array `a` is smaller than `b` if `a[i] < b[i]` for some `i` and for all `j < i`, `a[j] == b[j]` or if `a` is a (shorter) prefix of `b`.
219221

0 commit comments

Comments
 (0)