We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a7f949 commit 95b599dCopy full SHA for 95b599d
_overviews/collections-2.13/seqs.md
@@ -103,7 +103,7 @@ Two often used implementations of buffers are `ListBuffer` and `ArrayBuffer`. A
103
| ------ | ------ |
104
| **Additions:** | |
105
| `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.|
+| `buf.appendAll(xs)`<br>or `buf ++= xs` |Appends all elements in `xs` to buffer.|
107
| `buf.prepend(x)`<br>or `x +=: buf` |Prepends element `x` to buffer.|
108
| `buf.prependAll(xs)`<br>or `xs ++=: buf` |Prepends all elements in `xs` to buffer.|
109
| `buf.insert(i, x)` |Inserts element `x` at index `i` in buffer.|
0 commit comments