Skip to content

Commit 287f764

Browse files
author
Alex Ames
authored
Fixed typos in doxygen documentation (#481)
* Fixed typo in documentation. * Fixed reference to removed function in remote config
1 parent fccb88c commit 287f764

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

performance/src/include/firebase/performance/trace.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ class Trace {
8282
/// @brief Gets the value of the metric identified by the metric_name or 0
8383
/// if it hasn't yet been set.
8484
///
85-
/// @param[in] matric_name The name of the metric to get the value of.
85+
/// @param[in] metric_name The name of the metric to get the value of.
8686
/// @return The previously set of the given metric or 0 if it hasn't been
8787
/// set.
8888
int64_t GetLongMetric(const char* metric_name) const;
8989

9090
/// @brief Increments the existing value of the given metric by
9191
/// increment_by or sets it to increment_by if the metric hasn't been set.
9292
///
93-
/// @param[in] matric_name The name of the metric to increment the value
93+
/// @param[in] metric_name The name of the metric to increment the value
9494
/// of.
9595
/// @param[in] increment_by The value by which the metric should be
9696
/// incremented.

remote_config/src/include/firebase/remote_config.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,8 @@ class RemoteConfig {
245245
///
246246
/// @note This does not actually apply the data or make it accessible,
247247
/// it merely retrieves it and caches it. To accept and access the newly
248-
/// retrieved values, you must call @ref ActivateFetched().
248+
/// retrieved values, you must call @ref Activate().
249+
///
249250
/// Note that this function is asynchronous, and will normally take an
250251
/// unspecified amount of time before completion.
251252
///

0 commit comments

Comments
 (0)