Skip to content

Commit 686dfc6

Browse files
committed
chore: change master references to main to match the default branch name change
1 parent 138aac4 commit 686dfc6

30 files changed

+34
-34
lines changed

DemoApps/iOSDemo/iOSDemo/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// Created by Dave Wood on 2014-06-06.
66
// Copyright © 2014 Dave Wood, Cerebral Gardens.
7-
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/master/LICENSE.txt
7+
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/main/LICENSE.txt
88
//
99

1010
import UIKit

DemoApps/iOSDemo/iOSDemo/ViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// Created by Dave Wood on 2014-06-06.
66
// Copyright © 2014 Dave Wood, Cerebral Gardens.
7-
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/master/LICENSE.txt
7+
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/main/LICENSE.txt
88
//
99

1010
import UIKit

DemoApps/macOSDemo/macOSDemo/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// Created by Dave Wood on 2014-06-06.
66
// Copyright © 2014 Dave Wood, Cerebral Gardens.
7-
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/master/LICENSE.txt
7+
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/main/LICENSE.txt
88
//
99

1010
import Cocoa

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ to this:
3030
```2014-06-09 06:44:43.600 [Debug] [AppDelegate.swift:40] application(_:didFinishLaunchingWithOptions:): Simple message```
3131

3232
#### Example
33-
<img src="https://raw.githubusercontent.com/DaveWoodCom/XCGLogger/master/ReadMeImages/SampleLog.png" alt="Example" style="width: 690px;" />
33+
<img src="https://raw.githubusercontent.com/DaveWoodCom/XCGLogger/main/ReadMeImages/SampleLog.png" alt="Example" style="width: 690px;" />
3434

3535
### Communication _(Hat Tip AlamoFire)_
3636

@@ -546,9 +546,9 @@ Also, please check out some of my other projects:
546546

547547
The change log is now in its own file: [CHANGELOG.md](CHANGELOG.md)
548548

549-
[xcglogger-logo]: https://github.com/DaveWoodCom/XCGLogger/raw/master/ReadMeImages/XCGLoggerLogo_326x150.png
549+
[xcglogger-logo]: https://github.com/DaveWoodCom/XCGLogger/raw/main/ReadMeImages/XCGLoggerLogo_326x150.png
550550
[swift.org]: https://swift.org/
551-
[license]: https://github.com/DaveWoodCom/XCGLogger/blob/master/LICENSE.txt
551+
[license]: https://github.com/DaveWoodCom/XCGLogger/blob/main/LICENSE.txt
552552
[swiftpm]: https://swift.org/package-manager/
553553
[cocoapods]: https://cocoapods.org/
554554
[cocoapods-xcglogger]: https://cocoapods.org/pods/XCGLogger

Sources/ObjcExceptionBridging/include/ObjcExceptionBridging.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// Created by Dave Wood on 2014-06-06.
66
// Copyright © 2014 Dave Wood, Cerebral Gardens.
7-
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/master/LICENSE.txt
7+
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/main/LICENSE.txt
88
//
99

1010
#import <Foundation/Foundation.h>

Sources/XCGLogger/Destinations/AppleSystemLogDestination.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// Created by Dave Wood on 2014-06-06.
66
// Copyright © 2014 Dave Wood, Cerebral Gardens.
7-
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/master/LICENSE.txt
7+
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/main/LICENSE.txt
88
//
99

1010
import Foundation

Sources/XCGLogger/Destinations/AutoRotatingFileDestination.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// Created by Dave Wood on 2017-03-31.
66
// Copyright © 2017 Dave Wood, Cerebral Gardens.
7-
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/master/LICENSE.txt
7+
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/main/LICENSE.txt
88
//
99

1010
import Foundation

Sources/XCGLogger/Destinations/BaseDestination.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// Created by Dave Wood on 2014-06-06.
66
// Copyright © 2014 Dave Wood, Cerebral Gardens.
7-
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/master/LICENSE.txt
7+
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/main/LICENSE.txt
88
//
99

1010
import Foundation

Sources/XCGLogger/Destinations/BaseQueuedDestination.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// Created by Dave Wood on 2017-04-02.
66
// Copyright © 2017 Dave Wood, Cerebral Gardens.
7-
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/master/LICENSE.txt
7+
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/main/LICENSE.txt
88
//
99

1010
import Foundation

Sources/XCGLogger/Destinations/ConsoleDestination.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// Created by Dave Wood on 2014-06-06.
66
// Copyright © 2014 Dave Wood, Cerebral Gardens.
7-
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/master/LICENSE.txt
7+
// Some rights reserved: https://github.com/DaveWoodCom/XCGLogger/blob/main/LICENSE.txt
88
//
99

1010
import Dispatch

0 commit comments

Comments
 (0)