Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Nov 10, 2021
1 parent cb4ff4e commit 33d9b90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/session--composition-and-inheritance/composition.tex
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@
$aubergine = new Aubergine;
$artichoke = new Artichoke;

$basePizze = new CustomPizza($tomato, $cheese);
$basePizza = new CustomPizza($tomato, $cheese);

$margherita = new Margherita($basePizza);

Expand Down
2 changes: 1 addition & 1 deletion src/session--composition-and-inheritance/oop.tex
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@
\begin{lstlisting}
<?php

class Margherita extends customPizza
class Margherita extends CustomPizza
{
public function __construct(
Ingredient $tomato,
Expand Down

0 comments on commit 33d9b90

Please sign in to comment.