Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import Foundation
/// Facilitates communication with the backend for a ``LiveSession``.
///
/// Using an actor will make it easier to adopt session resumption, as we have an isolated place for
/// maintaining mutablity, which is backed by Swift concurrency implicitly; allowing us to avoid
/// maintaining mutability, which is backed by Swift concurrency implicitly; allowing us to avoid
/// various edge-case issues with dead-locks and data races.
///
/// This mainly comes into play when we don't want to block developers from sending messages while a
Expand Down
2 changes: 1 addition & 1 deletion FirebasePerformance/Tests/Unit/FIRPerformanceTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ - (void)testReadingAttributesFromProperty {
}

/** Validates if attributes property is immutable. */
- (void)testImmutablityOfAttributesProperty {
- (void)testImmutabilityOfAttributesProperty {
[self.performance setValue:@"bar" forAttribute:@"foo"];
NSMutableDictionary<NSString *, NSString *> *attributes =
(NSMutableDictionary<NSString *, NSString *> *)self.performance.attributes;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ - (void)testReadingAttributesFromProperty {
}

/** Validates if attributes property is immutable. */
- (void)testImmutablityOfAttributesProperty {
- (void)testImmutabilityOfAttributesProperty {
FIRHTTPMetric *metric = [[FIRHTTPMetric alloc] initWithURL:self.sampleURL
HTTPMethod:FIRHTTPMethodGET];
[metric setValue:@"bar" forAttribute:@"foo"];
Expand Down
2 changes: 1 addition & 1 deletion FirebasePerformance/Tests/Unit/Timer/FIRTraceTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ - (void)testReadingAttributesFromProperty {
}

/** Validates if attributes property is immutable. */
- (void)testImmutablityOfAttributesProperty {
- (void)testImmutabilityOfAttributesProperty {
FIRTrace *trace = [[FIRTrace alloc] initWithName:@"Random"];
[trace setValue:@"bar" forAttribute:@"foo"];
NSMutableDictionary<NSString *, NSString *> *attributes =
Expand Down
Loading