]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[891-make-stats-mgr-thread-safe] Removed a spurious ~
authorFrancis Dupont <fdupont@isc.org>
Sat, 16 Nov 2019 21:52:27 +0000 (22:52 +0100)
committerFrancis Dupont <fdupont@isc.org>
Sat, 16 Nov 2019 21:52:27 +0000 (22:52 +0100)
src/lib/stats/stats_mgr.h

index d2df9c97fe6bbde31671d63b5c3ed1bc11a80a71..b3244b55385255d3d12df59e57f9667c9b1aa45d 100644 (file)
@@ -140,7 +140,7 @@ class StatsMgr : public boost::noncopyable {
     /// @return true if successful, false if there's no such statistic
     /// Example:
     /// To set a statistic to keep observations for the last 5 minutes, call:
-    /// setMaxSampleAge~("incoming-packets", time_duration(0, 5, 0, 0));
+    /// setMaxSampleAge("incoming-packets", time_duration(0, 5, 0, 0));
     /// to revert statistic to a single value, call:
     /// setMaxSampleAge("incoming-packets", time_duration(0, 0, 0, 0));
     bool setMaxSampleAge(const std::string& name, const StatsDuration& duration);