Skip to content

Commit b075745

Browse files
committed
2 parents 05284a2 + 64b2554 commit b075745

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

1-js/05-data-types/02-number/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,4 +440,4 @@ Pro desetinná čísla:
440440

441441
Další matematické funkce:
442442

443-
- Až je budete potřebovat, viz objekt [Math](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Math). Je to velmi malá knihovna, ale základní potřeby dokáže pokrýt.
443+
- Až je budete potřebovat, viz objekt [Math](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Math). Je to velmi malá knihovna, ale základní potřeby dokáže pokrýt.

1-js/11-async/08-async-await/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ console.log(user);
136136
137137
If we're not using modules, or [older browsers](https://caniuse.com/mdn-javascript_operators_await_top_level) must be supported, there's a universal recipe: wrapping into an anonymous async function.
138138
139-
Lke this:
139+
Like this:
140140
141141
```js
142142
(async () => {

2-ui/3-event-details/7-keyboard-events/keyboard-dump.view/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
<input type="text" placeholder="Press keys here" id="kinput">
3030

31-
<textarea id="area"></textarea>
31+
<textarea id="area" readonly></textarea>
3232
<input type="button" value="Clear" onclick="area.value = ''" />
3333
</form>
3434
<script src="script.js"></script>

0 commit comments

Comments
 (0)