We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cfd691 commit ea369aaCopy full SHA for ea369aa
strings/knuth_morris_pratt.cpp
@@ -21,14 +21,15 @@
21
#include <cassert>
22
#include <vector>
23
24
-/** \namespace string_search
25
- * \brief String search algorithms
+/**
+ * @namespace string_search
26
+ * @brief String search algorithms
27
*/
28
namespace string_search {
29
/**
30
* @brief Generate the partial match table aka failure function for a pattern to
31
* search.
- * @param[in] pattern text for which to create the partial match table
32
+ * @param pattern text for which to create the partial match table
33
* @returns the partial match table as a vector array
34
35
std::vector<size_t> getFailureArray(const std::string &pattern) {
0 commit comments