We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f44d4e9 commit c94c857Copy full SHA for c94c857
‎Sources/PascalCaseKit/PascalCaseRepresentable.swift
@@ -1,8 +1,8 @@
1
/// A `RawRepresentable` type that outputs a `rawValue` in Pascal Case format when `RawValue`
2
/// is of type `String`.
3
-protocol PascalCaseRepresentable: RawRepresentable { }
+public protocol PascalCaseRepresentable: RawRepresentable { }
4
5
-extension PascalCaseRepresentable where Self.RawValue == String {
+public extension PascalCaseRepresentable where Self.RawValue == String {
6
7
var rawValue: RawValue {
8
let value = String(describing: self)
0 commit comments