Skip to content

Commit

Permalink
make protocol public 🤦
Browse files Browse the repository at this point in the history
  • Loading branch information
bbauman1 committed Jul 29, 2022
1 parent f44d4e9 commit c94c857
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/PascalCaseKit/PascalCaseRepresentable.swift
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/// A `RawRepresentable` type that outputs a `rawValue` in Pascal Case format when `RawValue`
/// is of type `String`.
protocol PascalCaseRepresentable: RawRepresentable { }
public protocol PascalCaseRepresentable: RawRepresentable { }

extension PascalCaseRepresentable where Self.RawValue == String {
public extension PascalCaseRepresentable where Self.RawValue == String {

var rawValue: RawValue {
let value = String(describing: self)
Expand Down

0 comments on commit c94c857

Please sign in to comment.