Skip to content

Commit 4369280

Browse files
committed
explain use [Closes #462]
1 parent b136d2c commit 4369280

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cs/quickstart/comments.texy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Nette Framework využívá koncept *komponent*. **Komponenta** je znovupoužitel
4747
/--php
4848
protected function createComponentCommentForm()
4949
{
50-
$form = new Form;
50+
$form = new Form; // means Nette\Application\UI\Form
5151

5252
$form->addText('name', 'Jméno:')
5353
->setRequired();

en/quickstart/comments.texy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Nette Framework has a concept of *components*. A **component** is a reusable cla
4646
/--php
4747
protected function createComponentCommentForm()
4848
{
49-
$form = new Form;
49+
$form = new Form; // means Nette\Application\UI\Form
5050

5151
$form->addText('name', 'Your name:')
5252
->setRequired();

0 commit comments

Comments
 (0)