Skip to content

Commit

Permalink
🤦‍♂️ Added missing 'public' access qualifier for the new Collection o…
Browse files Browse the repository at this point in the history
…f UInt8 extension.
  • Loading branch information
wadetregaskis committed Mar 3, 2024
1 parent 8fa8048 commit 561ced0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/FoundationExtensions/CollectionOfUInt8.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Created by Wade Tregaskis on 2024-03-02.

extension Collection where Element == UInt8 {
public extension Collection where Element == UInt8 {
func asHexString(uppercase: Bool = true,
delimiterEvery: Int = 0,
delimiter: String = " ") -> String {
Expand Down

0 comments on commit 561ced0

Please sign in to comment.