Skip to content

Commit 00af688

Browse files
committed
Add space
1 parent d545f4a commit 00af688

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/gleam/list.gleam

+3-1
Original file line numberDiff line numberDiff line change
@@ -1116,7 +1116,9 @@ pub fn intersperse(list: List(a), with elem: a) -> List(a) {
11161116
/// // -> Error(Nil)
11171117
/// ```
11181118
///
1119-
@deprecated("Gleam lists are immutable linked lists, so indexing into them is a slow operation that must traverse the list.
1119+
@deprecated("
1120+
1121+
Gleam lists are immutable linked lists, so indexing into them is a slow operation that must traverse the list.
11201122
11211123
In functional programming it is very rare to use indexing, so if you are using indexing then a different algorithm or a different data structure is likely more appropriate.
11221124
")

0 commit comments

Comments
 (0)