Skip to content

Commit b8af900

Browse files
committed
docs: README update
1 parent d14e558 commit b8af900

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ print(newArray)
739739

740740

741741
### [Dictionary](https://github.com/lgreydev/Help/blob/master/Help/WorkingCode/Dictionary.swift)
742-
[documentation](https://developer.apple.com/documentation/swift/array/3126956-reduce)
742+
[reduce(into:_:)](https://developer.apple.com/documentation/swift/array/3126956-reduce)
743743

744744
**Dictionary Reduce**
745745

@@ -759,8 +759,10 @@ fruitsCount // ["🍒": 4, "🍏": 2, "🍓": 3, "🍌": 5]
759759
```
760760

761761
**Dictionary Search List**
762+
[updateValue(_:forKey:)](https://developer.apple.com/documentation/swift/dictionary/3127179-updatevalue)
763+
[removeValue(forKey:)](https://developer.apple.com/documentation/swift/dictionary/1641348-removevalue)
762764

763-
```
765+
```swift
764766
struct Product: Hashable {
765767
let id: String; // unique identifier
766768
let name: String;

0 commit comments

Comments
 (0)