diff --git a/performance/src/include/firebase/performance/trace.h b/performance/src/include/firebase/performance/trace.h index 3a19585f90..3caf137e17 100644 --- a/performance/src/include/firebase/performance/trace.h +++ b/performance/src/include/firebase/performance/trace.h @@ -82,7 +82,7 @@ class Trace { /// @brief Gets the value of the metric identified by the metric_name or 0 /// if it hasn't yet been set. /// - /// @param[in] matric_name The name of the metric to get the value of. + /// @param[in] metric_name The name of the metric to get the value of. /// @return The previously set of the given metric or 0 if it hasn't been /// set. int64_t GetLongMetric(const char* metric_name) const; @@ -90,7 +90,7 @@ class Trace { /// @brief Increments the existing value of the given metric by /// increment_by or sets it to increment_by if the metric hasn't been set. /// - /// @param[in] matric_name The name of the metric to increment the value + /// @param[in] metric_name The name of the metric to increment the value /// of. /// @param[in] increment_by The value by which the metric should be /// incremented. diff --git a/remote_config/src/include/firebase/remote_config.h b/remote_config/src/include/firebase/remote_config.h index 1b102f7b1d..b16c857ab7 100644 --- a/remote_config/src/include/firebase/remote_config.h +++ b/remote_config/src/include/firebase/remote_config.h @@ -245,7 +245,8 @@ class RemoteConfig { /// /// @note This does not actually apply the data or make it accessible, /// it merely retrieves it and caches it. To accept and access the newly - /// retrieved values, you must call @ref ActivateFetched(). + /// retrieved values, you must call @ref Activate(). + /// /// Note that this function is asynchronous, and will normally take an /// unspecified amount of time before completion. ///