diff --git a/README.md b/README.md index 7abefe6..234c6e3 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ This is my repository with self implemented algorithms, written in C++.
Curr int main() { std::vector foo{1, 4, 5, 2, 3}; - // check if int is in vector with lenear search - if (algocpp::search::linearSearch(foo, 2)) { - std::cout << "found" << std::endl; - } + // check if int is in vector with lenear search + if (algocpp::search::linearSearch(foo, 2)) { + std::cout << "found" << std::endl; + } } ```