Skip to content

Commit c17b449

Browse files
authored
Review FirebasePerformance test app files (#13362)
1 parent 0af008c commit c17b449

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

FirebasePerformance/CHANGELOG.md

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

9797
# 7.0.0
9898
- Fix issue related to crashes on specific kind of network requests #6713.
99-
- Fixed issue related to race condition on Firebase Remote Config initializaton #6287.
99+
- Fixed issue related to race condition on Firebase Remote Config initialization #6287.
100100
- Update Firebase dependencies to be latest and greatest.
101101

102102
# 3.3.1

FirebasePerformance/Tests/TestApp/Source/Models/PerfLogger.m

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

2020
@implementation PerfLogger
2121

22-
#pragma mark - Initializtion
22+
#pragma mark - Initialization
2323

2424
+ (instancetype)sharedInstance {
2525
static PerfLogger *logger = nil;

FirebasePerformance/Tests/TestApp/Source/Networking/PerfNetworkConnection.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ - (NSString *)urlString {
5050

5151
- (void)makeNetworkRequestWithSuccessCallback:(SuccessNetworkCallback)success
5252
failureCallback:(FailureNetworkCallback)fail {
53-
NSAssert(NO, @"Abstract class. The method must be overriden.");
53+
NSAssert(NO, @"Abstract class. The method must be overridden.");
5454
}
5555

5656
@end

FirebasePerformance/Tests/TestApp/Source/ViewControllers/ScreenTracesViewController.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#import <UIKit/UIKit.h>
1616

1717
/** This is a split view controller subclass that sets up everything needed to display the catalog
18-
* of all the screen trace test screens availble.
18+
* of all the screen trace test screens available.
1919
*/
2020
@interface ScreenTracesViewController : UISplitViewController
2121

FirebasePerformance/Tests/TestApp/Source/Views/PerfTraceView.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ @interface PerfTraceView ()
3535
/** A button to increment a second metric on the currently running trace. */
3636
@property(nonatomic) UIButton *metricTwoButton;
3737

38-
/** A button to add a custom attribute to the currrently running trace. */
38+
/** A button to add a custom attribute to the currently running trace. */
3939
@property(nonatomic) UIButton *customAttributeButton;
4040

4141
/** A label for the current stage state. */

0 commit comments

Comments
 (0)