Fix class names and comments

This commit is contained in:
2025-04-06 22:05:19 -04:00
parent 1cd8ada925
commit 4bc7bf4214
7 changed files with 24 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
//
// GettingStartedmacOS.swift
// GettingStartedMac.swift
// Nostore
//
// Created by Ryan Breen on 2/18/23.
@@ -7,13 +7,13 @@
import SwiftUI
struct GettingStartedmacOS: View {
struct GettingStartedMac: View {
var body: some View {
ScrollView {
Text("Getting Started")
.font(.largeTitle)
.foregroundColor(.accentColor)
Text("macOS")
Text("Mac")
.font(.title)
.foregroundColor(.accentColor)
Text("")
@@ -49,8 +49,8 @@ Once active, the icon will become colored and you can select it again, where you
}
}
struct GettingStartedmacOS_Previews: PreviewProvider {
struct GettingStartedMac_Previews: PreviewProvider {
static var previews: some View {
GettingStartedmacOS()
GettingStartedMac()
}
}

View File

@@ -1,5 +1,5 @@
//
// HelloView.swift
// MainView.swift
// Nostore
//
// Created by Ryan Breen on 2/17/23.
@@ -38,8 +38,8 @@ struct MainView: View {
#endif
.padding(.all, 3.0)
NavigationLink("Getting Started: MacOS") {
GettingStartedmacOS()
NavigationLink("Getting Started: Mac") {
GettingStartedMac()
}
#if macOS
.buttonStyle(.link)

View File

@@ -1,5 +1,5 @@
//
// File.swift
// NostoreApp.swift
// Nostore
//
// Created by Ryan Breen on 2/17/23.

View File

@@ -1,5 +1,5 @@
//
// SwiftUIView.swift
// PrivacyPolicyView.swift
// Nostore
//
// Created by Ryan Breen on 2/17/23.

View File

@@ -1,5 +1,5 @@
//
// SwiftUIView.swift
// TipsAndTricks.swift
// Nostore
//
// Created by Ryan Breen on 2/19/23.
@@ -34,7 +34,7 @@ struct TipsAndTricks: View {
}
}
struct Tipsandtricks_Previews: PreviewProvider {
struct TipsAndTricks_Previews: PreviewProvider {
static var previews: some View {
TipsAndTricks()
}