feat: Working on documentation
All checks were successful
CI / Run tests. (push) Successful in 58s

This commit is contained in:
2024-12-09 09:35:17 -05:00
parent 78a632c3e5
commit 875b1980e0
9 changed files with 100 additions and 8 deletions

View File

@@ -62,7 +62,7 @@ public extension VStack {
/// Style a ``VStack`` by creating a type that conforms to ``VStackStyle`` and use the
/// style by calling the ``VStack/style(_:)`` method on your instance.
///
public protocol VStackStyle: TextModifier where Content == StackConfiguration {}
public protocol VStackStyle: TextModifier where Content == _StackConfiguration {}
public extension VStackStyle where Self == VStackSeparatorStyle {
@@ -92,7 +92,7 @@ public struct VStackSeparatorStyle: VStackStyle {
}
@inlinable
public func render(content: StackConfiguration) -> some TextNode {
public func render(content: _StackConfiguration) -> some TextNode {
AnySeparatableStackNode(content: content, separator: separator)
}
}