Skip to content

Commit

Permalink
Fix public access rights.
Browse files Browse the repository at this point in the history
  • Loading branch information
objecthub committed May 29, 2023
1 parent 241f553 commit 016535d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/CLFormat/CLControl.swift
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,10 @@ public struct Context {
}
}

let config: CLFormatConfig
let output: History
public let config: CLFormatConfig
public let output: History

init(config: CLFormatConfig, output: History = .root) {
public init(config: CLFormatConfig, output: History = .root) {
self.config = config
self.output = output
}
Expand Down

0 comments on commit 016535d

Please sign in to comment.