diff --git a/webserv/mymodule/MyModule.cpp b/webserv/mymodule/MyModule.cpp index 480ce2d..2d110cb 100644 --- a/webserv/mymodule/MyModule.cpp +++ b/webserv/mymodule/MyModule.cpp @@ -2,7 +2,6 @@ #include -void MyModule::doSomething() -{ - std::cout << "Doing something!" << std::endl; +void MyModule::doSomething() { + std::cout << "Doing really something!" << std::endl; } \ No newline at end of file diff --git a/webserv/mymodule/MyModule.hpp b/webserv/mymodule/MyModule.hpp index c5de43c..7e23057 100644 --- a/webserv/mymodule/MyModule.hpp +++ b/webserv/mymodule/MyModule.hpp @@ -3,5 +3,5 @@ class MyModule { public: - void doSomething(); + void doSomething(); }; \ No newline at end of file