From 4b2b2ebe8cda587309f94c97b036474dc52bd430 Mon Sep 17 00:00:00 2001 From: Nicky Lim Date: Sat, 30 Sep 2023 23:40:03 +0800 Subject: [PATCH] Fix typo cpp 104 index (#4520) --- src/data/roadmaps/cpp/content/104-data-types/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/cpp/content/104-data-types/index.md b/src/data/roadmaps/cpp/content/104-data-types/index.md index 76096783c..1ac598d69 100644 --- a/src/data/roadmaps/cpp/content/104-data-types/index.md +++ b/src/data/roadmaps/cpp/content/104-data-types/index.md @@ -85,7 +85,7 @@ int& numRef = num; User-defined data types are types that are defined by the programmer, such as structures, classes, and unions. ## Structures (struct) -Structures are used to store different data tyes under a single variable and accessibility of member variables and methods are public. +Structures are used to store different data types under a single variable and accessibility of member variables and methods are public. Example: ```cpp