docs: fix capitalization in doxygen comments
Change-Id: Ibf5ee5119d12d60d382b0acef8dfd08277c18fcb
diff --git a/tests/tools/nfdc/mock-nfd-mgmt-fixture.hpp b/tests/tools/nfdc/mock-nfd-mgmt-fixture.hpp
index eb197a4..ab2ec39 100644
--- a/tests/tools/nfdc/mock-nfd-mgmt-fixture.hpp
+++ b/tests/tools/nfdc/mock-nfd-mgmt-fixture.hpp
@@ -39,7 +39,7 @@
class MockNfdMgmtFixture : public nfd::tests::MockNfdMgmtFixture
{
protected:
- /** \brief respond to FaceQuery requests
+ /** \brief Respond to FaceQuery requests.
* \retval true the Interest matches one of the defined patterns and is responded
* \retval false the Interest is not responded
*/
diff --git a/tests/tools/nfdc/status-fixture.hpp b/tests/tools/nfdc/status-fixture.hpp
index 7616306..c82e79b 100644
--- a/tests/tools/nfdc/status-fixture.hpp
+++ b/tests/tools/nfdc/status-fixture.hpp
@@ -51,8 +51,8 @@
}
};
-/** \brief fixture to test status fetching routines in a \p Module
- * \tparam M a subclass of \p Module
+/** \brief Fixture to test status fetching routines in a Module.
+ * \tparam M a subclass of Module
* \tparam MakeValidator a callable to make a Validator for use in \p controller;
* MakeValidator()(Face&, KeyChain&) should return a unique_ptr
* to Validator or its subclass
@@ -71,7 +71,7 @@
}
protected: // status fetching
- /** \brief start fetching status
+ /** \brief Start fetching status.
*
* A test case should call \p fetchStatus, \p sendDataset, and \p prepareStatusOutput
* in this order, and then check \p statusXml and \p statusText contain the correct outputs.
@@ -90,7 +90,7 @@
this->advanceClocks(1_ms);
}
- /** \brief prepare status output as XML and text
+ /** \brief Prepare status output as XML and text.
* \pre sendDataset has been invoked
*/
void
@@ -116,7 +116,7 @@
output_test_stream statusText;
};
-/** \brief strips leading spaces on every line in expected XML
+/** \brief Strips leading spaces on every line in expected XML.
*
* This allows expected XML to be written as:
* \code
diff --git a/tests/tools/nfdc/status-report.t.cpp b/tests/tools/nfdc/status-report.t.cpp
index f978c57..fbff27a 100644
--- a/tests/tools/nfdc/status-report.t.cpp
+++ b/tests/tools/nfdc/status-report.t.cpp
@@ -53,9 +53,9 @@
{
}
- /** \brief cause fetchStatus to succeed or fail
+ /** \brief Cause fetchStatus() to succeed or fail.
* \param res zero to succeed, non-zero to fail with specific code
- * \param delay duration from fetchStatus invocation to succeed or fail; must be positive
+ * \param delay duration from fetchStatus() invocation to succeed or fail; must be positive
*/
void
setResult(uint32_t res, time::nanoseconds delay)