Skip to content

Commit 2f1d35b

Browse files
committed
Fix one more indentation issue
1 parent a6a6af2 commit 2f1d35b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

TSPL.docc/ReferenceManual/Attributes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1762,8 +1762,8 @@ into code that calls the static methods of the result builder type:
17621762
func draw() -> String { return content }
17631763
}
17641764
struct Line<D: Drawable>: Drawable {
1765-
var elements: [D]
1766-
func draw() -> String {
1765+
var elements: [D]
1766+
func draw() -> String {
17671767
return elements.map { $0.draw() }.joined(separator: "")
17681768
}
17691769
}

0 commit comments

Comments
 (0)