Skip to content

Commit

Permalink
Fix indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael McLeod committed Nov 2, 2023
1 parent e960dfe commit bdc177b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions 02cpp1/index.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit bdc177b

Please sign in to comment.