Skip to content

Commit c94c857

Browse files
committed
make protocol public 🤦
1 parent f44d4e9 commit c94c857

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎Sources/PascalCaseKit/PascalCaseRepresentable.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/// A `RawRepresentable` type that outputs a `rawValue` in Pascal Case format when `RawValue`
22
/// is of type `String`.
3-
protocol PascalCaseRepresentable: RawRepresentable { }
3+
public protocol PascalCaseRepresentable: RawRepresentable { }
44

5-
extension PascalCaseRepresentable where Self.RawValue == String {
5+
public extension PascalCaseRepresentable where Self.RawValue == String {
66

77
var rawValue: RawValue {
88
let value = String(describing: self)

0 commit comments

Comments
 (0)