From b9460e059eb21edb2a2499ff210032e8a97ae29f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Pol=C3=A1k?= Date: Tue, 6 Aug 2024 22:53:11 +0200 Subject: [PATCH] typo (#1052) Co-authored-by: David Grudl --- nette/cs/introduction-to-object-oriented-programming.texy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nette/cs/introduction-to-object-oriented-programming.texy b/nette/cs/introduction-to-object-oriented-programming.texy index 7aa59bda34..e7c34e9e30 100644 --- a/nette/cs/introduction-to-object-oriented-programming.texy +++ b/nette/cs/introduction-to-object-oriented-programming.texy @@ -158,7 +158,7 @@ class Osoba function vypisInformace() { - echo "Věk: {$this->age} let\n"; + echo "Věk: {$this->vek} let\n"; } }