Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {
// Called as the scene is being released by the system.
// This occurs shortly after the scene enters the background, or when its session is discarded.
// Release any resources associated with this scene that can be re-created the next time the scene connects.
// The scene may re-connect later, as its session was not neccessarily discarded (see `application:didDiscardSceneSessions` instead).
// The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead).
}

func sceneDidBecomeActive(_ scene: UIScene) {
Expand Down
2 changes: 1 addition & 1 deletion SwiftSyft/Classes/SignallingClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ extension SignallingClient {

#if !DEBUG
guard url.absoluteString.hasPrefix("wss") else {
preconditionFailure("Path for socket server shoud start with wss://")
preconditionFailure("Path for socket server should start with wss://")
}
#endif

Expand Down
2 changes: 1 addition & 1 deletion SwiftSyft/Classes/SyftWebSocket.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class SyftWebSocket: NSObject, SocketClientProtocol, URLSessionWebSocketDelegate
super.init()
#if !DEBUG
guard url.absoluteString.hasPrefix("wss") else {
preconditionFailure("Path for socket server shoud start with wss://")
preconditionFailure("Path for socket server should start with wss://")
}
#endif
urlSession = URLSession(configuration: .default, delegate: self, delegateQueue: delegateQueue)
Expand Down