macos: struct attributes can be private

This commit is contained in:
Jon Parise
2024-11-15 22:45:44 -05:00
parent de60382824
commit 8a74b59a7e

View File

@ -106,9 +106,9 @@ struct AboutView: View {
} }
private struct PropertyRow: View { private struct PropertyRow: View {
let label: String private let label: String
let text: String private let text: String
let url: URL? private let url: URL?
init(label: String, text: String, url: URL? = nil) { init(label: String, text: String, url: URL? = nil) {
self.label = label self.label = label