Skip to content

Commit

Permalink
Correct html endings for links!
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael McLeod committed Nov 2, 2023
1 parent 3faf978 commit b5d0376
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 02cpp1/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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](sec01Types.md)
[Type Systems](./sec01Types.html)

- 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.md)
[Passing by Value and by Reference](./sec02PassByValueOrReference.html)

- 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](sec03ObjectOrientedProgramming.md)
[Understanding Classes and Objects](./sec03ObjectOrientedProgramming.html)

- Classes as user-defined types.
- Objects as instances of classes.
- Access Specifiers
- Inheritance and Introductory Polymorphism

[Common Standard Library Features](sec04StandardLibrary.md)
[Common Standard Library Features](./sec04StandardLibrary.html)

- Containers & Iterators
- Algorithms & Anonymous Functions
Expand Down

0 comments on commit b5d0376

Please sign in to comment.