From 87dcff553178612ed55fc23602fefdca79929e0e Mon Sep 17 00:00:00 2001 From: Angel Ortigosa Perez Date: Sun, 7 Sep 2025 11:03:23 +0200 Subject: [PATCH] Fixed CTRL+D bug and SHOW to SEARCH command on ex05 --- ex01/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ex01/main.cpp b/ex01/main.cpp index 1f5b4ef..83a1953 100644 --- a/ex01/main.cpp +++ b/ex01/main.cpp @@ -6,7 +6,7 @@ /* By: aortigos "; std::getline(std::cin, str); if (str == "ADD") ph.addContacts(); - else if (str == "SHOW") + else if (str == "SEARCH") ph.showContacts(); std::cout << std::endl; }