diff --git a/docs/A-Introduction/welcome-to-oo.md b/docs/A-Introduction/welcome-to-oo.md index ab81e6b..5692c02 100644 --- a/docs/A-Introduction/welcome-to-oo.md +++ b/docs/A-Introduction/welcome-to-oo.md @@ -55,7 +55,7 @@ The distinguishing features of C, C++ and Java are: - C has no object-oriented support. C leaves us no choice but to design our programming solutions in terms of activity-oriented structures. - C++ is **hybrid**. It augments C with object-oriented features. C++ lets us build our solutions partly from activities and partly from objects. The main function in any C++ program is a C function, which is not object-oriented. C++ stresses compile-time logic. -- Java is **purely object-oriented**. It excludes all non-object-oriented features. Java leaves us no choice but to design our solutions using an object-oriented structures. +- Java is **heavily object-oriented**. It excludes all non-object-oriented features. Java leaves us no choice but to design our solutions using an object-oriented structures. ## Features of C++