diff --git a/_subpages/collection-types-comparison.md b/_subpages/collection-types-comparison.md index e5f10fe..3887e0e 100644 --- a/_subpages/collection-types-comparison.md +++ b/_subpages/collection-types-comparison.md @@ -30,7 +30,7 @@ redirect_from: | **Arrays** | `let numbers: [Int] = []` or `let numbers = [Int]()` | | **Set** | `let numbers: Set = []` or `let numbers = Set()` | -| **Dictionaries** | `let points: [String: Int] = []` or `let points = [String: Int]()` | +| **Dictionaries** | `let points: [String: Int] = [:]` or `let points = [String: Int]()` | ### Order