Skip to content

Commit 1b61e4d

Browse files
authored
Review files under the FirebasePerformance/Sources directory (#13361)
1 parent ffe6e2f commit 1b61e4d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

FirebasePerformance/Sources/Configurations/FPRConfigurations.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ - (void)setDataCollectionEnabled:(BOOL)dataCollectionEnabled {
144144
// The data collection flag is determined by this order:
145145
// 1. A plist flag for permanently disabling data collection
146146
// 2. The runtime flag (GULUserDefaults)
147-
// 3. A plist flag for enabling/disabling (overrideable)
147+
// 3. A plist flag for enabling/disabling (overridable)
148148
// 4. The global data collection switch from Core.
149149
- (BOOL)isDataCollectionEnabled {
150150
/**

FirebasePerformance/Sources/Gauges/CPU/FPRCPUGaugeCollector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ NS_EXTENSION_UNAVAILABLE("Firebase Performance is not supported for extensions."
3636

3737
@end
3838

39-
/** CPU Gauge collector implementation. This class collects the CPU utilitization and reports back
39+
/** CPU Gauge collector implementation. This class collects the CPU utilization and reports back
4040
* to the delegate.
4141
*/
4242
NS_EXTENSION_UNAVAILABLE("Firebase Performance is not supported for extensions.")

FirebasePerformance/Sources/Gauges/FPRGaugeManager.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ - (void)appStateChanged:(NSNotification *)notification {
102102

103103
- (BOOL)gaugeCollectionEnabled {
104104
// Allow gauge collection to happen during cold start. During dispatch time, we do another check
105-
// to make sure if gauge collection is enabled. This is to accomodate gauge metric collection
105+
// to make sure if gauge collection is enabled. This is to accommodate gauge metric collection
106106
// during app_start scenario.
107107
if (self.isColdStart) {
108108
return YES;

FirebasePerformance/Sources/Instrumentation/FPRNetworkTrace.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ NS_EXTENSION_UNAVAILABLE("Firebase Performance is not supported for extensions."
161161
- (nullable instancetype)init NS_UNAVAILABLE;
162162

163163
/**
164-
* Records the begining of the network request. This is usually called just before initiating the
164+
* Records the beginning of the network request. This is usually called just before initiating the
165165
* request.
166166
*/
167167
- (void)start;

FirebasePerformance/Sources/Loggers/FPRGDTLogger.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ NS_EXTENSION_UNAVAILABLE("Firebase Performance is not supported for extensions."
3838
/**
3939
* Logs an event that needs to be dispatched.
4040
*
41-
* @remark Events are logged/dispatched asynchrounously using a serial dispatch queue.
41+
* @remark Events are logged/dispatched asynchronously using a serial dispatch queue.
4242
* @param event The event to log.
4343
*/
4444
- (void)logEvent:(firebase_perf_v1_PerfMetric)event;

0 commit comments

Comments
 (0)