Skip to content

Commit fc77930

Browse files
committed
Cleanup code style spacing in Swift starter projects.
1 parent 4c1992d commit fc77930

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ParseStarterProject/iOS/ParseStarterProject-Swift/ParseStarterProject/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
4545
// If you would like all objects to be private by default, remove this line.
4646
defaultACL.publicReadAccess = true
4747

48-
PFACL.setDefaultACL(defaultACL, withAccessForCurrentUser:true)
48+
PFACL.setDefaultACL(defaultACL, withAccessForCurrentUser: true)
4949

5050
if application.applicationState != UIApplicationState.Background {
5151
// Track an app open here if we launch with a push, unless

ParseStarterProject/tvOS/ParseStarterProject-Swift/ParseStarter/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
3232

3333
let defaultACL = PFACL();
3434
defaultACL.publicReadAccess = true // If you would like all objects to be private by default, remove this line.
35-
PFACL.setDefaultACL(defaultACL, withAccessForCurrentUser:true)
35+
PFACL.setDefaultACL(defaultACL, withAccessForCurrentUser: true)
3636

3737
return true
3838
}

ParseStarterProject/watchOS/ParseStarterProject-Swift/ParseStarterProject/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
4545
// If you would like all objects to be private by default, remove this line.
4646
defaultACL.publicReadAccess = true
4747

48-
PFACL.setDefaultACL(defaultACL, withAccessForCurrentUser:true)
48+
PFACL.setDefaultACL(defaultACL, withAccessForCurrentUser: true)
4949

5050
if application.applicationState != UIApplicationState.Background {
5151
// Track an app open here if we launch with a push, unless

0 commit comments

Comments
 (0)