From: Josh Soref Date: Sun, 23 Jul 2017 21:26:24 +0000 (-0400) Subject: spelling: writing X-Git-Tag: trac5124a_base~35^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb41b177020fda1ef9d0a235bc08bbd1cc6b5794;p=thirdparty%2Fkea.git spelling: writing --- diff --git a/src/lib/dhcp/pkt4.h b/src/lib/dhcp/pkt4.h index 1011be7064..bd3af7d1fe 100644 --- a/src/lib/dhcp/pkt4.h +++ b/src/lib/dhcp/pkt4.h @@ -73,7 +73,7 @@ public: /// Prepares on-wire format of message and all its options. /// Options must be stored in options_ field. /// Output buffer will be stored in buffer_out_. - /// The buffer_out_ is cleared before writting to the buffer. + /// The buffer_out_ is cleared before writing to the buffer. /// /// @throw InvalidOperation if packing fails virtual void pack(); diff --git a/src/lib/dhcp/pkt6.cc b/src/lib/dhcp/pkt6.cc index 4b431bf33d..19de2f7a76 100644 --- a/src/lib/dhcp/pkt6.cc +++ b/src/lib/dhcp/pkt6.cc @@ -281,7 +281,7 @@ Pkt6::pack() { void Pkt6::packUDP() { try { - // Make sure that the buffer is empty before we start writting to it. + // Make sure that the buffer is empty before we start writing to it. buffer_out_.clear(); // is this a relayed packet? diff --git a/src/lib/dhcpsrv/lease_file_stats.h b/src/lib/dhcpsrv/lease_file_stats.h index 70b0237321..6a46480fac 100644 --- a/src/lib/dhcpsrv/lease_file_stats.h +++ b/src/lib/dhcpsrv/lease_file_stats.h @@ -53,7 +53,7 @@ public: return (write_leases_); } - /// @brief Gets the number of errors when writting leases + /// @brief Gets the number of errors when writing leases uint32_t getWriteErrs() const { return (write_errs_); }