File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
_overviews/collections-2.13 Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ Two often used implementations of buffers are `ListBuffer` and `ArrayBuffer`. A
103
103
| ------ | ------ |
104
104
| ** Additions:** | |
105
105
| ` buf.append(x) ` <br >or ` buf += x ` | Appends element ` x ` to buffer, and returns ` buf ` itself as result.|
106
- | ` buf.appendAll(xs) ` <<
5368
span class="pl-ent">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.|
107
107
| ` buf.prepend(x) ` <br >or ` x +=: buf ` | Prepends element ` x ` to buffer.|
108
108
| ` buf.prependAll(xs) ` <br >or ` xs ++=: buf ` | Prepends all elements in ` xs ` to buffer.|
109
109
| ` buf.insert(i, x) ` | Inserts element ` x ` at index ` i ` in buffer.|
You can’t perform that action at this time.
0 commit comments