diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2023-02-12 14:05:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-12 10:05:34 -0300 |
commit | f039836a2fd7f615c51a1a2efe896181ae56c103 (patch) | |
tree | a0e849fdf22e56790034041f8844be9eb1954049 /src/common/Metric/Metric.cpp | |
parent | e37e6327f046037299e77ea42cc1e837bf5f7da2 (diff) |
chore(Core/Misc): Change all TODO to doxygen comment (#14966)
Diffstat (limited to 'src/common/Metric/Metric.cpp')
-rw-r--r-- | src/common/Metric/Metric.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Metric/Metric.cpp b/src/common/Metric/Metric.cpp index 01a2511f58..908ffc6766 100644 --- a/src/common/Metric/Metric.cpp +++ b/src/common/Metric/Metric.cpp @@ -322,7 +322,7 @@ std::string Metric::FormatInfluxDBValue(float value) std::string Metric::FormatInfluxDBTagValue(std::string const& value) { - // ToDo: should handle '=' and ',' characters too + /// @todo: should handle '=' and ',' characters too return boost::replace_all_copy(value, " ", "\\ "); } |