File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Sources/MarkdownUI/Utility Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ import SwiftUI
33// MARK: - Deprecated after 2.0.2:
44
55extension View {
6- @available ( * , deprecated, message: " Use the version of this function that takes a closure receiving a generic 'Configuration' value. " )
6+ @available (
7+ * , deprecated,
8+ message:
9+ " Use the version of this function that takes a closure receiving a generic 'Configuration' value. "
10+ )
711 public func markdownBlockStyle< Body: View > (
812 _ keyPath: WritableKeyPath < Theme , BlockStyle < CodeBlockConfiguration > > ,
913 @ViewBuilder body: @escaping ( _ label: BlockConfiguration . Label ) -> Body
@@ -18,7 +22,11 @@ extension View {
1822}
1923
2024extension Theme {
21- @available ( * , deprecated, message: " Use the version of this function that takes a closure receiving a 'CodeBlockConfiguration' value. " )
25+ @available (
26+ * , deprecated,
27+ message:
28+ " Use the version of this function that takes a closure receiving a 'CodeBlockConfiguration' value. "
29+ )
2230 public func codeBlock< Body: View > (
2331 @ViewBuilder body: @escaping ( _ label: BlockConfiguration . Label ) -> Body
2432 ) -> Theme {
You can’t perform that action at this time.
0 commit comments