From 016ddd0846d81fade473ca8266b3a50854da18d8 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 13 Jan 2025 15:01:04 +0100 Subject: [PATCH] style: correcting typos --- cpp03/ex00/ClapTrap.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp03/ex00/ClapTrap.cpp b/cpp03/ex00/ClapTrap.cpp index 0a2cc56..cb1e3f3 100644 --- a/cpp03/ex00/ClapTrap.cpp +++ b/cpp03/ex00/ClapTrap.cpp @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/01/10 13:59:49 by rparodi #+# #+# */ -/* Updated: 2025/01/10 16:00:29 by rparodi ### ########.fr */ +/* Updated: 2025/01/13 14:58:53 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -32,7 +32,7 @@ void ClapTrap::attack(const std::string& target) { return ; } _energy_point--; - std::cout << "[Attack] ClapTrap:\n\t" << _name << " attacks " << target << ", causing" << _attack_damage << "points of damage!" << std::endl; + std::cout << "[Attack] ClapTrap:\n\t" << _name << " attacks " << target << ", causing " << _attack_damage << " points of damage!" << std::endl; } void ClapTrap::takeDamage(unsigned int amount) {