Skip to content

Fixed typos in doxygen documentation #481

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 18, 2021
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
4 changes: 2 additions & 2 deletions performance/src/include/firebase/performance/trace.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ 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;

/// @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.
Expand Down
3 changes: 2 additions & 1 deletion remote_config/src/include/firebase/remote_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand Down