Skip to content

Commit 30bfccd

Browse files
committed
Fix access control
1 parent 73a21a8 commit 30bfccd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/SwiftBasicFormat/Syntax+Extensions.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
import SwiftSyntax
1414

15-
public extension TokenSyntax {
15+
extension TokenSyntax {
1616
/// The indentation of this token
1717
///
1818
/// In contrast to `indentationOfLine`, this does not walk to previous tokens to
@@ -23,7 +23,7 @@ public extension TokenSyntax {
2323
}
2424

2525
/// Returns the indentation of the line this token occurs on
26-
var indentationOfLine: Trivia {
26+
public var indentationOfLine: Trivia {
2727
var token: TokenSyntax = self
2828
if let indentation = token.indentation {
2929
return indentation

0 commit comments

Comments
 (0)