fix doc/**/user-input.md

This commit is contained in:
MihailRis 2024-08-02 03:02:33 +03:00
parent 50a388c539
commit cba06c18ad
2 changed files with 4 additions and 4 deletions

View File

@ -70,7 +70,7 @@ Checks input activity using a code consisting of:
Example: Example:
```lua ```lua
if (input.is_pressed("key:enter") { if input.is_pressed("key:enter") then
... ...
} end
``` ```

View File

@ -74,7 +74,7 @@ input.is_pressed(code: str) -> bool
Пример: Пример:
```lua ```lua
if (input.is_pressed("key:enter") { if input.is_pressed("key:enter") then
... ...
} end
``` ```