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 {
let label: String
let text: String
let url: URL?
private let label: String
private let text: String
private let url: URL?
init(label: String, text: String, url: URL? = nil) {
self.label = label