From a5d4bd45a5c15a460533f56d3d9d993570e8255c Mon Sep 17 00:00:00 2001 From: Zhang Eric Date: Fri, 22 May 2020 16:22:08 +0800 Subject: [PATCH] #234 Corrected std-seq.md sample. --- docs/std-seq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/std-seq.md b/docs/std-seq.md index 0fc55355..1bba4f0c 100644 --- a/docs/std-seq.md +++ b/docs/std-seq.md @@ -60,7 +60,7 @@ Usage: | `//seq.join(", ", ["pew", "another pew", "and more pews"])` | `"pew, another pew, and more pews"` | | `//seq.join(" ", ["this", "is", "a", "sentence"])` | `"this is a sentence"` | | `//seq.join(["", "this", "is", "a", "sentence"])` | `"thisisasentence"` | -| `//seq.join([0], [1,2,3,4,5])` | `[1,0,2,0,3,0,4,0,5]` | +| `//seq.join([0], [[1, 2], [3, 4], [5, 6]]` | `[1, 2, 0, 3, 4, 0, 5, 6]` | `//seq.join([0], [[2, [3, 4]], [5, 6]])` | `[2, [3, 4], 0, 5, 6]` | | `//seq.join([[0],[1]], [[[1, 2], [3, 4]],[[5, 6],[7, 8]]])` | `[[1, 2], [3, 4], [0], [1], [5, 6], [7, 8]]` |