From f7899f3f1c8118a005144aac12ba1748dcd91066 Mon Sep 17 00:00:00 2001 From: Aadat Date: Mon, 4 Mar 2019 02:44:40 +0530 Subject: [PATCH] Added object oriented keyword in definition of cplusplus (#30056) --- guide/english/cplusplus/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/cplusplus/index.md b/guide/english/cplusplus/index.md index fc61f19c93..7a29daf4ee 100644 --- a/guide/english/cplusplus/index.md +++ b/guide/english/cplusplus/index.md @@ -5,7 +5,7 @@ title: C++ ## What is C++? -* C++ is a general purpose programming language which has been used since the 1990's +* C++ is a general purpose programming [Object-Oriented](https://en.wikipedia.org/wiki/Object-oriented_programming) language which has been used since the 1990's * It was designed as a thesis paper by [Bjarne Stroustrup](https://en.wikipedia.org/wiki/Bjarne_Stroustrup) under the name "C with Classes", which later became C++. * It is a version of C that includes Object-Oriented elements, including classes and functions.