File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ extension AbsoluteConfigKey? {
166
166
/// Returns a new absolute configuration key by appending the given relative key.
167
167
/// - Parameter relative: The relative configuration key to append to this key.
168
168
/// - Returns: A new absolute configuration key with the relative key appended.
169
- internal func appending( _ relative: ConfigKey ) -> AbsoluteConfigKey {
169
+ public func appending( _ relative: ConfigKey ) -> AbsoluteConfigKey {
170
170
switch self {
171
171
case . none:
172
172
return . init( relative)
@@ -182,7 +182,7 @@ extension AbsoluteConfigKey {
182
182
/// Returns a new absolute configuration key by prepending the given relative key.
183
183
/// - Parameter prefix: The relative configuration key to prepend to this key.
184
184
/// - Returns: A new absolute configuration key with the prefix prepended.
185
- internal func prepending( _ prefix: ConfigKey ) -> AbsoluteConfigKey {
185
+ public func prepending( _ prefix: ConfigKey ) -> AbsoluteConfigKey {
186
186
var prefixedComponents = prefix. components
187
187
prefixedComponents. append ( contentsOf: self . components)
188
188
var mergedContext = prefix. context
You can’t perform that action at this time.
0 commit comments