diff --git a/2-ObjectProgramming/2-Member-functions.ipynb b/2-ObjectProgramming/2-Member-functions.ipynb index 5553433ef612170b473db0d804eb7fbbef7c093c..13ddecd55b7bb27aa097d91fad2c61307a488db4 100644 --- a/2-ObjectProgramming/2-Member-functions.ipynb +++ b/2-ObjectProgramming/2-Member-functions.ipynb @@ -25,7 +25,7 @@ "\n", "The struct we used previously would work the same in C code (with the exceptions of references: with a C compiler you would have to stick with pointers).\n", "\n", - "But when Bjarne Stroustrup created the C++, its main idea was to extend these structs into full-fledged **classes** (to the point the working name of his language was *C with classes*...)\n", + "But when Bjarne Stroustrup created the C++, its main idea was to extend these structs into full-fledged **classes** (to the extent that the working name of his language was *C with classes*...)\n", "\n", "One of the idea that was missing with original C `struct` was the possibility to add as well member functions:" ]