Skip to content

Commit ea369aa

Browse files
committed
feat: format code
1 parent 5cfd691 commit ea369aa

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

strings/knuth_morris_pratt.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,15 @@
2121
#include <cassert>
2222
#include <vector>
2323

24-
/** \namespace string_search
25-
* \brief String search algorithms
24+
/**
25+
* @namespace string_search
26+
* @brief String search algorithms
2627
*/
2728
namespace string_search {
2829
/**
2930
* @brief Generate the partial match table aka failure function for a pattern to
3031
* search.
31-
* @param[in] pattern text for which to create the partial match table
32+
* @param pattern text for which to create the partial match table
3233
* @returns the partial match table as a vector array
3334
*/
3435
std::vector<size_t> getFailureArray(const std::string &pattern) {

0 commit comments

Comments
 (0)