Skip to content

Commit ec29b6d

Browse files
radekdostaldg
authored andcommitted
typos
1 parent d1d84fa commit ec29b6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Nette\Forms greatly facilitates creating and processing web forms. What it can r
1515

1616
Why should you bother setting up framework for a simple web form? You won't have to take care about routine tasks such as writing two validation scripts (client and server) and your code will be safe against security breaches.
1717

18-
Nette Framework puts a great effort to be safe and since forms are the most common user input, Nette forms are as good as impenetrable. All is maintained dynamically and transparently, nothing has to be set manually. Well known vulnerabilities such as Cross Site Scripting (XSS) and Cross-Site Request Forgery (CSRF) are filtered, as well as special control characters. All inputs are checked for UTF-8 validity. Every multiple-choice, select boxe and similar are checked for forged values upon validating. Sounds good? Let's try it out.
18+
Nette Framework puts a great effort to be safe and since forms are the most common user input, Nette forms are as good as impenetrable. All is maintained dynamically and transparently, nothing has to be set manually. Well known vulnerabilities such as Cross Site Scripting (XSS) and Cross-Site Request Forgery (CSRF) are filtered, as well as special control characters. All inputs are checked for UTF-8 validity. Every multiple-choice, select box and similar are checked for forged values upon validating. Sounds good? Let's try it out.
1919

2020
[See documentation](https://doc.nette.org/en/forms).
2121

tests/Forms/Forms.validationScope.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require __DIR__ . '/../bootstrap.php';
1313

1414

1515
$datasets = [
16-
['send1', ['container', 'form', 'name', 'age', 'age2']],
16+
['send1', ['container', 'form', 'name', 'age', 'age2']],
1717
['send2', ['form']],
1818
['send3', ['form', 'name']],
1919
['send4', ['form', 'age']],

0 commit comments

Comments
 (0)