Skip to content

Commit 63d102a

Browse files
chavidsponce
authored andcommitted
Typos.
1 parent 27a9f13 commit 63d102a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

exercises/ExercisesCheatSheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ You may discuss with the students:
7373
reusing versus performance.
7474
- object-functions.
7575
- for what concerns the related operators, such as * and *=,
76-
the choice to be made consitent reuse or performant
76+
the choice to be made consistent reuse or performant
7777
specialization of each operator.
7878

7979
### Polymorphism (directory: [`polymorphism`](polymorphism))

exercises/operators/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ OPTIONAL STEP 3
1717
- Review operator*() so to reuse operator*=().
1818
- Ensure calls to operator*=() can be chained, the same as operator<<().
1919

20-
## Take aways
20+
## Take away
2121

2222
- Do not confuse equality and equivalence.
23-
- We can very often implement an arithemtic operator@ in terms of operator@=.
23+
- We can very often implement an arithmetic operator@ in terms of operator@=.
2424
- When implementing <=>, you get <, >, <=, >= for free.
2525
- Object-functions are very used with standard algorithms,
2626
yet tend to be often replaced by lambdas in modern C++.

0 commit comments

Comments
 (0)