Skip to content

Commit c325d35

Browse files
author
Elvirion Antersijn
committed
Made public Dictionary extension function internal
1 parent 1793432 commit c325d35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/TUSKitTests/Support/Support.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ extension Dictionary {
6666

6767
/// Case insenstiive subscripting. Only for string keys.
6868
/// We downcast to string to support AnyHashable keys.
69-
public subscript(caseInsensitive key: Key) -> Value? {
69+
subscript(caseInsensitive key: Key) -> Value? {
7070
guard let someKey = key as? String else {
7171
return nil
7272
}

0 commit comments

Comments
 (0)