Skip to content

Commit 95b599d

Browse files
Update seqs.md
1 parent 8a7f949 commit 95b599d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_overviews/collections-2.13/seqs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Two often used implementations of buffers are `ListBuffer` and `ArrayBuffer`. A
103103
| ------ | ------ |
104104
| **Additions:** | |
105105
| `buf.append(x)`<br>or `buf += x` |Appends element `x` to buffer, and returns `buf` itself as result.|
106-
| `buf.appendAll(xs)`<br>or `buf ++= xs` |Appends all elements in `xs` to buffer.|
106+
| `buf.appendAll(xs)`<br>or `buf ++= xs` |Appends all elements in `xs` to buffer.|
107107
| `buf.prepend(x)`<br>or `x +=: buf` |Prepends element `x` to buffer.|
108108
| `buf.prependAll(xs)`<br>or `xs ++=: buf` |Prepends all elements in `xs` to buffer.|
109109
| `buf.insert(i, x)` |Inserts element `x` at index `i` in buffer.|

0 commit comments

Comments
 (0)