Skip to content

Commit ffedaed

Browse files
authored
Fix typos (#12783)
1 parent 70f7e77 commit ffedaed

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

FirebaseAnalytics/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
This directory open sources select files from the Firebase Analytics SDK. Note
2-
that there is no open source infastructure to build or package them.
2+
that there is no open source infrastructure to build or package them.

FirebaseAppDistribution/Sources/FIRFADApiService.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ typedef void (^FIRFADGenerateAuthTokenCompletion)(
5050
// Label exceptions from AppDistributionApi calls.
5151
FOUNDATION_EXPORT NSString *const kFIRFADApiErrorDomain;
5252

53-
// A service encapsulating calls to the App Distribtuion Tester API
53+
// A service encapsulating calls to the App Distribution Tester API
5454
@interface FIRFADApiService : NSObject
5555

5656
// Fetch releases from the AppDistribution Tester API

FirebaseAppDistributionInternal/Sources/ApiService.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ struct FeedbackReport: Codable {
537537
do {
538538
return try JSONDecoder().decode(T.self, from: data)
539539
} catch let thrownError {
540-
handleApiParserErorr(thrownError, &error)
540+
handleApiParserError(thrownError, &error)
541541
return nil
542542
}
543543
}
@@ -558,12 +558,12 @@ struct FeedbackReport: Codable {
558558
options: JSONSerialization.ReadingOptions(rawValue: 0)
559559
) as? T
560560
} catch let thrownError {
561-
handleApiParserErorr(thrownError, &error)
561+
handleApiParserError(thrownError, &error)
562562
return nil
563563
}
564564
}
565565

566-
static func handleApiParserErorr(_ thrownError: Error, _ error: inout Error?) {
566+
static func handleApiParserError(_ thrownError: Error, _ error: inout Error?) {
567567
let description: String = (thrownError as NSError)
568568
.userInfo[NSLocalizedDescriptionKey] as? String ?? "Failed to parse response"
569569
error = thrownError

FirebaseDatabase/Sources/Core/View/Filter/FNodeFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
forNode:(FIndexedNode *)oldSnap;
6060

6161
/**
62-
* Returns true if children might be filtered due to query critiera
62+
* Returns true if children might be filtered due to query criteria
6363
*/
6464
- (BOOL)filtersNodes;
6565

FirebaseDynamicLinks/Sources/FIRDynamicLinkNetworking+Private.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ NS_ASSUME_NONNULL_BEGIN
2020

2121
/** The key for the DL URL. */
2222
FOUNDATION_EXPORT NSString *const kFDLResolvedLinkDeepLinkURLKey;
23-
/** The key for the mininum iOS app version. */
23+
/** The key for the minimum iOS app version. */
2424
FOUNDATION_EXPORT NSString *const kFDLResolvedLinkMinAppVersionKey;
2525

2626
// Private interface for testing.

FirebaseDynamicLinks/Sources/FIRDynamicLinks.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ + (NSString *)diagnosticAnalyzeEntitlements {
698698
NSDictionary *plistMap = (NSDictionary *)plistData;
699699

700700
// analyze entitlements and print diagnostic information
701-
// we can't detect erorrs, information p[rinted here may hint developer or will help support
701+
// we can't detect errors, information p[rinted here may hint developer or will help support
702702
// to identify the issue
703703
NSMutableString *outputString = [[NSMutableString alloc] init];
704704

0 commit comments

Comments
 (0)