Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos found by codespell #65

Merged
merged 1 commit into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Open geteduroam.xcodeproj in a current version of Xcode (at least 14.3) and sele

## Technical Design

The app is designed using [The Composable Architecture](https://github.com/pointfreeco/swift-composable-architecture) (TCA) with SwiftUI. It uses modules its various features. The app itself only contains a minimal amount of code as well as some theming.
The app is designed using [The Composable Architecture](https://github.com/pointfreeco/swift-composable-architecture) (TCA) with SwiftUI. It uses modules to implement its various features. The app itself only contains a minimal amount of code as well as some theming.

The modules are all defined in the GeteduroamPackage package.

Expand All @@ -53,7 +53,7 @@ The detail screen with profile selection, helpdesk info and connect functionalit

### DiscoveryClient

Retreives the list of organizations from the backend.
Retrieves the list of organizations from the backend.

### EAPConfigurator

Expand All @@ -65,7 +65,7 @@ The main screen with the search functionality.

### Models

Models used troughout the app.
Models used throughout the app.

### NotificationClient

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public struct ConnectView_Mac: View {
WithViewStore(store, observe: { $0 }) { viewStore in
VStack(alignment: .leading) {
if #available(macOS 13.0, *) {
// On macOS 13 we push instead of present a sheet and therefor these controls aren't needed
// On macOS 13 we push instead of present a sheet and therefore these controls aren't needed
} else {
HStack(alignment: .firstTextBaseline) {
VStack(alignment: .leading) {
Expand Down