From ff67fd3ee903dd4d0385b96a65f9be50d47c4c1e Mon Sep 17 00:00:00 2001 From: BelaBartok39 <95888988+BelaBartok39@users.noreply.github.com> Date: Mon, 21 Aug 2023 14:52:03 -0600 Subject: [PATCH] Fixed incorrect type declaration. This is a non-issue typo. Located in the CPP module docs, Introductory.md. --- exercises/concept/ellens-alien-game/.docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/ellens-alien-game/.docs/introduction.md b/exercises/concept/ellens-alien-game/.docs/introduction.md index 418b5a515..f640213ad 100644 --- a/exercises/concept/ellens-alien-game/.docs/introduction.md +++ b/exercises/concept/ellens-alien-game/.docs/introduction.md @@ -30,7 +30,7 @@ Notice the `;` after the definition: ```cpp class Wizard { public: // from here on all members are publicly accessible - inc cast_spell() { // defines the public member function cast_spell + int cast_spell() { // defines the public member function cast_spell return damage; } std::string name{}; // defines the public member variable `name`