Skip to content

Commit cea5826

Browse files
authored
Update 4-Modificadores-de-acesso.md
Correção do objeto $filho
1 parent 3719a5b commit cea5826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: 4-Intermediário/4-Modificadores-de-acesso.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ $pai->nomePai . PHP_EOL; //Erro fatal
6464

6565
$filho = new Filho();
6666

67-
$flho->nomePai . PHP_EOL; //Erro fatal
67+
$filho->nomePai . PHP_EOL; //Erro fatal
6868
$filho->apresentar(); //Output: Meu nome é Pedro e o do meu pai é João
6969
```
7070

0 commit comments

Comments
 (0)