Skip to content

Commit ffc697b

Browse files
authored
[Functions] Fix typo in HTTPSCallableOptions initializer (#11318)
1 parent 8066d19 commit ffc697b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

FirebaseCore/Internal/Sources/HeartbeatLogging/Heartbeat.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ struct Heartbeat: Codable, Equatable {
4848
/// a moving average.
4949
let timePeriods: [TimePeriod]
5050

51-
/// Designated intializer.
51+
/// Designated initializer.
5252
/// - Parameters:
5353
/// - agent: An anonymous string of information to associate the heartbeat with.
5454
/// - date: The date when the heartbeat was recorded.

FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public final class HeartbeatController {
3636
self.init(id: id, dateProvider: Date.init)
3737
}
3838

39-
/// Convenience initializer. Mirrors the semantics of the public intializer with the added benefit of
39+
/// Convenience initializer. Mirrors the semantics of the public initializer with the added benefit of
4040
/// injecting a custom date provider for improved testability.
4141
/// - Parameters:
4242
/// - id: The id to associate this controller's heartbeat storage with.

FirebaseDatabase/Sources/Api/FIRDatabaseComponent.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
@interface FIRDatabaseComponent () <FIRComponentLifecycleMaintainer, FIRLibrary>
3434
@property(nonatomic) FIRDatabaseDictionary *instances;
35-
/// Internal intializer.
35+
/// Internal initializer.
3636
- (instancetype)initWithApp:(FIRApp *)app;
3737
@end
3838

FirebaseFunctions/Sources/HTTPSCallableOptions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import Foundation
1919
/// Whether or not to protect the callable function with a limited-use App Check token.
2020
@objc public let requireLimitedUseAppCheckTokens: Bool
2121

22-
/// Designated intializer.
22+
/// Designated initializer.
2323
/// - Parameter requireLimitedUseAppCheckTokens: A boolean used to decide whether or not to
2424
/// protect the callable function with a limited use App Check token.
2525
@objc public init(requireLimitedUseAppCheckTokens: Bool) {

FirebaseMessaging/Sources/Token/FIRMessagingTokenManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ typedef NS_OPTIONS(NSUInteger, FIRMessagingInvalidTokenReason) {
4848
- (instancetype)init NS_UNAVAILABLE;
4949

5050
/**
51-
* Designated intializer.
51+
* Designated initializer.
5252
*
5353
* @param heartbeatLogger The heartbeat logger that is injected into token operations.
5454
*/

0 commit comments

Comments
 (0)