From 90ed3ce3b2967e6b1c24fafe67b9d87019fd0087 Mon Sep 17 00:00:00 2001 From: aortigos Date: Tue, 17 Feb 2026 09:54:40 +0100 Subject: [PATCH] Added one space on printing error at signing --- ex01/Bureaucrat/Bureaucrat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ex01/Bureaucrat/Bureaucrat.cpp b/ex01/Bureaucrat/Bureaucrat.cpp index b9f013c..18c842f 100644 --- a/ex01/Bureaucrat/Bureaucrat.cpp +++ b/ex01/Bureaucrat/Bureaucrat.cpp @@ -94,7 +94,7 @@ void Bureaucrat::signForm(Form &form) << std::endl; } catch (std::exception &e) { std::cout << this->name - << "couldn't sign " + << " couldn't sign " << form.getName() << " because " << e.what()