]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#2833] Fix typos
authorSuzanne Goldlust <sgoldlust@isc.org>
Wed, 21 Jun 2023 19:52:02 +0000 (19:52 +0000)
committerPiotrek Zadroga <piotrek@isc.org>
Tue, 27 Jun 2023 15:32:48 +0000 (15:32 +0000)
src/lib/dhcpsrv/subnet.cc

index c591ea94b7c242cc59164f1bce0ab398439e7034..2e480d474b265370005db36896d8ce277ca7ea27 100644 (file)
@@ -813,7 +813,7 @@ Subnet4::toElement() const {
     const auto& pools = getPools(Lease::TYPE_V4);
     ElementPtr pool_list = Element::createList();
     for (const auto& pool : pools) {
-        // Add the formated pool to the list
+        // Add the formatted pool to the list
         pool_list->add(pool->toElement());
     }
     map->set("pools", pool_list);
@@ -921,7 +921,7 @@ Subnet6::toElement() const {
     const auto& pools = getPools(Lease::TYPE_NA);
     ElementPtr pool_list = Element::createList();
     for (const auto& pool : pools) {
-        // Add the formated pool to the list
+        // Add the formatted pool to the list
         pool_list->add(pool->toElement());
     }
     map->set("pools", pool_list);
@@ -930,7 +930,7 @@ Subnet6::toElement() const {
     const auto& pdpools = getPools(Lease::TYPE_PD);
     ElementPtr pdpool_list = Element::createList();
     for (const auto& pool : pdpools) {
-        // Add the formated pool to the list
+        // Add the formatted pool to the list
         pdpool_list->add(pool->toElement());
     }
     map->set("pd-pools", pdpool_list);