diff --git a/exercises/concept/speedywagon/.docs/introduction.md b/exercises/concept/speedywagon/.docs/introduction.md index 3f64ba0f0..fe708ac3e 100644 --- a/exercises/concept/speedywagon/.docs/introduction.md +++ b/exercises/concept/speedywagon/.docs/introduction.md @@ -85,8 +85,6 @@ Superhero* dianaPrince = &wonder_woman; dianaPrince->superpower = "Lasso of Truth"; // Using the -> operator to access member variable superpower: std::cout << "Wonder Woman, possesses the mighty " << dianaPrince->superpower; -// Memory cleanup: -delete dianaPrince; ``` ## Pointers vs. references