From b7aff9b30e312d2e85e17aaad36510516acd0c48 Mon Sep 17 00:00:00 2001 From: Andrew Heard Date: Thu, 8 Feb 2024 14:45:07 -0500 Subject: [PATCH] Update links to `main` branches --- Firestore/Source/Public/FirebaseFirestore/FIRTimestamp.h | 2 +- Firestore/core/include/firebase/firestore/timestamp.h | 2 +- Firestore/core/test/unit/FSTGoogleTestTests.mm | 2 +- scripts/update_xcode_target.rb | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Firestore/Source/Public/FirebaseFirestore/FIRTimestamp.h b/Firestore/Source/Public/FirebaseFirestore/FIRTimestamp.h index 8ba13a3a128..375f697338a 100644 --- a/Firestore/Source/Public/FirebaseFirestore/FIRTimestamp.h +++ b/Firestore/Source/Public/FirebaseFirestore/FIRTimestamp.h @@ -27,7 +27,7 @@ NS_ASSUME_NONNULL_BEGIN * 9999-12-31T23:59:59.999999999Z. By restricting to that range, we ensure that we can convert to * and from RFC 3339 date strings. * - * @see https://github.com/google/protobuf/blob/master/src/google/protobuf/timestamp.proto for the + * @see https://github.com/google/protobuf/blob/main/src/google/protobuf/timestamp.proto for the * reference timestamp definition. */ NS_SWIFT_NAME(Timestamp) diff --git a/Firestore/core/include/firebase/firestore/timestamp.h b/Firestore/core/include/firebase/firestore/timestamp.h index 286da1149f1..0ab818532f8 100644 --- a/Firestore/core/include/firebase/firestore/timestamp.h +++ b/Firestore/core/include/firebase/firestore/timestamp.h @@ -38,7 +38,7 @@ namespace firebase { * from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. * * @see - * https://github.com/google/protobuf/blob/master/src/google/protobuf/timestamp.proto + * https://github.com/google/protobuf/blob/main/src/google/protobuf/timestamp.proto */ class Timestamp { public: diff --git a/Firestore/core/test/unit/FSTGoogleTestTests.mm b/Firestore/core/test/unit/FSTGoogleTestTests.mm index 244875a1614..f0120857d76 100644 --- a/Firestore/core/test/unit/FSTGoogleTestTests.mm +++ b/Firestore/core/test/unit/FSTGoogleTestTests.mm @@ -139,7 +139,7 @@ @interface GoogleTests : XCTestCase * These members are then joined with a ":" as googletest requires. * * @see - * https://github.com/google/googletest/blob/master/googletest/docs/AdvancedGuide.md + * https://github.com/google/googletest/blob/main/docs/advanced.md */ NSString* CreateTestFiltersFromTestsToRun(NSSet* testsToRun) { NSMutableString* result = [[NSMutableString alloc] init]; diff --git a/scripts/update_xcode_target.rb b/scripts/update_xcode_target.rb index f4eb2d661bb..f9f58387f90 100755 --- a/scripts/update_xcode_target.rb +++ b/scripts/update_xcode_target.rb @@ -15,7 +15,7 @@ # limitations under the License. # Script to add a file to an Xcode target. -# Adapted from https://github.com/firebase/quickstart-ios/blob/master/scripts/info_script.rb +# Adapted from https://github.com/firebase/quickstart-ios/blob/main/scripts/info_script.rb require 'xcodeproj' project_path = ARGV[0]