Skip to content

Commit 94d18ce

Browse files
committed
Tweak format
1 parent f88cffd commit 94d18ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gleam/list.gleam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -786,9 +786,9 @@ pub fn fold_right(
786786
/// ```gleam
787787
/// ["a", "b", "c"]
788788
/// |> index_fold("", fn(acc, item, index) {
789-
/// acc <> int.to_string(index) <> ":" <> item <> " "
789+
/// acc <> int.to_string(index) <> ":" <> item <> " "
790790
/// })
791-
/// // -> 0:a 1:b 2:c
791+
/// // -> "0:a 1:b 2:c"
792792
/// ```
793793
///
794794
/// ```gleam

0 commit comments

Comments
 (0)