From bdc177bc887b4f863e727c046f743b45cb0e26f7 Mon Sep 17 00:00:00 2001 From: Michael McLeod Date: Thu, 2 Nov 2023 15:53:55 +0000 Subject: [PATCH] Fix indexing --- 02cpp1/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/02cpp1/index.md b/02cpp1/index.md index 56e1406ae..77d46187f 100644 --- a/02cpp1/index.md +++ b/02cpp1/index.md @@ -1,5 +1,5 @@ --- -title: "Week 2: Modern C++ (1)" +title: "Week 2: Custom Data Types and (a glimpse of) the Standard Library" --- ## Week 2: Overview @@ -19,25 +19,25 @@ This week we'll be further our knowledge of core features of the C++ language an This week will cover: -[Type Systems](./TypesInCpp.md) +[Type Systems](./sec01Types.md) -- A quick introduction to types, and how they are used in C++ in particular. +- A quick introduction to what types are, and how they are used in C++ in particular. - Options for user-defined types. -[Passing by Value and by Reference](./sec02PassByValueOrReference.html) +[Passing by Value and by Reference](./sec02PassByValueOrReference.md) - Differences between passing arguments to functions by value and by reference - Exracting values from functions by return statements or references - Usage of the `const` keyword -[Understanding Classes and Objects](./sec01ObjectOrientedProgramming.md) +[Understanding Classes and Objects](./sec03ObjectOrientedProgramming.md) - Classes as user-defined types. - Objects as instances of classes. - Access Specifiers - Inheritance and Introductory Polymorphism -[Common Standard Library Features](./sec01StandardLibrary.html) +[Common Standard Library Features](./sec04StandardLibrary.md) - Containers & Iterators - Algorithms & Anonymous Functions