From 4a7cbc38dbde08c0a63e6ca7c88b75e7faeb984e Mon Sep 17 00:00:00 2001 From: Eriksen Costa Date: Tue, 25 Feb 2020 14:03:29 -0300 Subject: [PATCH] Fix typos --- _overviews/collections-2.13/performance-characteristics.md | 4 ++-- _overviews/collections/performance-characteristics.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_overviews/collections-2.13/performance-characteristics.md b/_overviews/collections-2.13/performance-characteristics.md index 2d4e05bbf6..b40deb1e45 100644 --- a/_overviews/collections-2.13/performance-characteristics.md +++ b/_overviews/collections-2.13/performance-characteristics.md @@ -73,8 +73,8 @@ The first table treats sequence types--both immutable and mutable--with the foll | **tail** | Producing a new sequence that consists of all elements except the first one. | | **apply** | Indexing. | | **update** | Functional update (with `updated`) for immutable sequences, side-effecting update (with `update` for mutable sequences). | -| **prepend**| Adding an element to the front of the sequence. For immutable sequences, this produces a new sequence. For mutable sequences it modified the existing sequence. | -| **append** | Adding an element and the end of the sequence. For immutable sequences, this produces a new sequence. For mutable sequences it modified the existing sequence. | +| **prepend**| Adding an element to the front of the sequence. For immutable sequences, this produces a new sequence. For mutable sequences it modifies the existing sequence. | +| **append** | Adding an element and the end of the sequence. For immutable sequences, this produces a new sequence. For mutable sequences it modifies the existing sequence. | | **insert** | Inserting an element at an arbitrary position in the sequence. This is only supported directly for mutable sequences. | The second table treats mutable and immutable sets and maps with the following operations: diff --git a/_overviews/collections/performance-characteristics.md b/_overviews/collections/performance-characteristics.md index 70aa202d71..f3131c9274 100644 --- a/_overviews/collections/performance-characteristics.md +++ b/_overviews/collections/performance-characteristics.md @@ -72,8 +72,8 @@ The first table treats sequence types--both immutable and mutable--with the foll | **tail** | Producing a new sequence that consists of all elements except the first one. | | **apply** | Indexing. | | **update** | Functional update (with `updated`) for immutable sequences, side-effecting update (with `update` for mutable sequences). | -| **prepend**| Adding an element to the front of the sequence. For immutable sequences, this produces a new sequence. For mutable sequences it modified the existing sequence. | -| **append** | Adding an element and the end of the sequence. For immutable sequences, this produces a new sequence. For mutable sequences it modified the existing sequence. | +| **prepend**| Adding an element to the front of the sequence. For immutable sequences, this produces a new sequence. For mutable sequences it modifies the existing sequence. | +| **append** | Adding an element and the end of the sequence. For immutable sequences, this produces a new sequence. For mutable sequences it modifies the existing sequence. | | **insert** | Inserting an element at an arbitrary position in the sequence. This is only supported directly for mutable sequences. | The second table treats mutable and immutable sets and maps with the following operations: