File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed
FirebaseAppDistributionInternal/Sources
FirebaseAppDistribution/Sources
FirebaseDatabase/Sources/Core/View/Filter
FirebaseDynamicLinks/Sources Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
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.
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ typedef void (^FIRFADGenerateAuthTokenCompletion)(
50
50
// Label exceptions from AppDistributionApi calls.
51
51
FOUNDATION_EXPORT NSString *const kFIRFADApiErrorDomain ;
52
52
53
- // A service encapsulating calls to the App Distribtuion Tester API
53
+ // A service encapsulating calls to the App Distribution Tester API
54
54
@interface FIRFADApiService : NSObject
55
55
56
56
// Fetch releases from the AppDistribution Tester API
Original file line number Diff line number Diff line change @@ -537,7 +537,7 @@ struct FeedbackReport: Codable {
537
537
do {
538
538
return try JSONDecoder ( ) . decode ( T . self, from: data)
539
539
} catch let thrownError {
540
- handleApiParserErorr ( thrownError, & error)
540
+ handleApiParserError ( thrownError, & error)
541
541
return nil
542
542
}
543
543
}
@@ -558,12 +558,12 @@ struct FeedbackReport: Codable {
558
558
options: JSONSerialization . ReadingOptions ( rawValue: 0 )
559
559
) as? T
560
560
} catch let thrownError {
561
- handleApiParserErorr ( thrownError, & error)
561
+ handleApiParserError ( thrownError, & error)
562
562
return nil
563
563
}
564
564
}
565
565
566
- static func handleApiParserErorr ( _ thrownError: Error , _ error: inout Error ? ) {
566
+ static func handleApiParserError ( _ thrownError: Error , _ error: inout Error ? ) {
567
567
let description : String = ( thrownError as NSError )
568
568
. userInfo [ NSLocalizedDescriptionKey] as? String ?? " Failed to parse response "
569
569
error = thrownError
Original file line number Diff line number Diff line change 59
59
forNode : (FIndexedNode *)oldSnap ;
60
60
61
61
/* *
62
- * Returns true if children might be filtered due to query critiera
62
+ * Returns true if children might be filtered due to query criteria
63
63
*/
64
64
- (BOOL )filtersNodes ;
65
65
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ NS_ASSUME_NONNULL_BEGIN
20
20
21
21
/* * The key for the DL URL. */
22
22
FOUNDATION_EXPORT NSString *const kFDLResolvedLinkDeepLinkURLKey ;
23
- /* * The key for the mininum iOS app version. */
23
+ /* * The key for the minimum iOS app version. */
24
24
FOUNDATION_EXPORT NSString *const kFDLResolvedLinkMinAppVersionKey ;
25
25
26
26
// Private interface for testing.
Original file line number Diff line number Diff line change @@ -698,7 +698,7 @@ + (NSString *)diagnosticAnalyzeEntitlements {
698
698
NSDictionary *plistMap = (NSDictionary *)plistData;
699
699
700
700
// 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
702
702
// to identify the issue
703
703
NSMutableString *outputString = [[NSMutableString alloc ] init ];
704
704
You can’t perform that action at this time.
0 commit comments