From: Marcin Siodelski Date: Mon, 7 May 2018 14:13:00 +0000 (+0200) Subject: [5586] Corrected some little typos as a result of review. X-Git-Tag: trac5536_base^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ade7065e0f9d2ddcfbd08525ab55a913e2cb8c4;p=thirdparty%2Fkea.git [5586] Corrected some little typos as a result of review. --- diff --git a/src/lib/dhcpsrv/mysql_lease_mgr.cc b/src/lib/dhcpsrv/mysql_lease_mgr.cc index cb705e4c03..59d105ee42 100644 --- a/src/lib/dhcpsrv/mysql_lease_mgr.cc +++ b/src/lib/dhcpsrv/mysql_lease_mgr.cc @@ -1290,7 +1290,7 @@ public: /// /// The query created will return statistics for all subnets /// - /// @param conn A open connection to the database housing the lease data + /// @param conn An open connection to the database housing the lease data /// @param statement_index Index of the query's prepared statement /// @param fetch_type Indicates if query supplies lease type /// @throw if statement index is invalid. @@ -1309,7 +1309,7 @@ public: /// /// The query created will return statistics for a single subnet /// - /// @param conn A open connection to the database housing the lease data + /// @param conn An open connection to the database housing the lease data /// @param statement_index Index of the query's prepared statement /// @param fetch_type Indicates if query supplies lease type /// @param subnet_id id of the subnet for which stats are desired @@ -1330,7 +1330,7 @@ public: /// The query created will return statistics for the inclusive range of /// subnets described by first and last sunbet IDs. /// - /// @param conn A open connection to the database housing the lease data + /// @param conn An open connection to the database housing the lease data /// @param statement_index Index of the query's prepared statement /// @param fetch_type Indicates if query supplies lease type /// @param first_subnet_id first subnet in the range of subnets @@ -1362,7 +1362,7 @@ public: /// the output bind array and then executes the statement, and fetches /// entire result set. void start() { - // Set up where clause inputs if needed */ + // Set up where clause inputs if needed. if (getSelectMode() != ALL_SUBNETS) { MYSQL_BIND inbind[2]; memset(inbind, 0, sizeof(inbind));