summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorRazvan Becheriu <razvan@isc.org>2020-11-19 18:57:09 +0100
committerRazvan Becheriu <razvan@isc.org>2020-11-19 18:57:09 +0100
commita09f68d8601c7acc0a2385c4c6851ad739e1201c (patch)
tree9c9705fbc11ad16d7093e1bf3b30205056c5d71a /src/lib
parent[#1550] addressed comments (diff)
downloadkea-a09f68d8601c7acc0a2385c4c6851ad739e1201c.tar.xz
kea-a09f68d8601c7acc0a2385c4c6851ad739e1201c.zip
[#1550] addressed comments
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/dhcpsrv/alloc_engine.h4
-rw-r--r--src/lib/hooks/hooks_manager.h4
-rw-r--r--src/lib/util/tests/unlock_guard_unittests.cc2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/dhcpsrv/alloc_engine.h b/src/lib/dhcpsrv/alloc_engine.h
index 1022183825..f95898edfa 100644
--- a/src/lib/dhcpsrv/alloc_engine.h
+++ b/src/lib/dhcpsrv/alloc_engine.h
@@ -942,7 +942,7 @@ public:
/// Attempts to find appropriate host reservation in HostMgr. If found, it
/// is set in the @ref ClientContext6::hosts_.
///
- /// @node When the out-of-pool flag is enabled, because the function is
+ /// @note When the out-of-pool flag is enabled, because the function is
/// called only once per DHCP message, the reservations that are in-subnet
/// are not filtered out as there is no sufficient information regarding the
/// selected subnet, shared network or lease types, but will be filtered out
@@ -1584,7 +1584,7 @@ public:
/// Attempts to find appropriate host reservation in HostMgr. If found, it
/// is set in the @ref ClientContext4::hosts_.
///
- /// @node When the out-of-pool flag is enabled, because the function is
+ /// @note When the out-of-pool flag is enabled, because the function is
/// called only once per DHCP message, the reservations that are in-subnet
/// are not filtered out as there is no sufficient information regarding the
/// selected subnet or shared network, but will be filtered out at
diff --git a/src/lib/hooks/hooks_manager.h b/src/lib/hooks/hooks_manager.h
index ea61daf26a..7cda194bbb 100644
--- a/src/lib/hooks/hooks_manager.h
+++ b/src/lib/hooks/hooks_manager.h
@@ -478,12 +478,12 @@ private:
/// Set of library managers.
///
- /// @node: This should never be null.
+ /// @note: This should never be null.
boost::shared_ptr<LibraryManagerCollection> lm_collection_;
/// Callout manager for the set of library managers.
///
- /// @node: This should never be null.
+ /// @note: This should never be null.
boost::shared_ptr<CalloutManager> callout_manager_;
/// Test flag to keep @ref callout_manager_ when calling @ref loadLibraries
diff --git a/src/lib/util/tests/unlock_guard_unittests.cc b/src/lib/util/tests/unlock_guard_unittests.cc
index 1c55fa4eb7..c64caa425a 100644
--- a/src/lib/util/tests/unlock_guard_unittests.cc
+++ b/src/lib/util/tests/unlock_guard_unittests.cc
@@ -21,7 +21,7 @@ namespace {
/// @brief test mutex class used to check the internal state of a 'fictional'
/// mutex so that the functionality of the UnlockGuard can be tested
-/// @node the test mutex can be recursive which means that a lock can be called
+/// @note the test mutex can be recursive which means that a lock can be called
/// on the same thread and not resulting in a dead lock
class TestMutex {
public: