pages: fix typo (#11934)

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Sebastiaan Speck
2024-01-01 19:26:11 +01:00
committed by GitHub
parent e3292d315b
commit 3b8dd30d52
14 changed files with 27 additions and 27 deletions

View File

@@ -17,7 +17,7 @@
- Soft drop the piece:
`{{Down arrow key}}`
`<Down arrow key>`
- Hard drop the piece:

View File

@@ -22,7 +22,7 @@
- Render the animation of a specific scene, starting at frame 10 and ending at frame 500:
`blender --background {{path/to/file}}.blend --scene {{scene_name}} --frame-start {{10}} -e {{500}} --render-anim`
`blender --background {{path/to/file}}.blend --scene {{scene_name}} --frame-start {{10}} --frame-end {{500}} --render-anim`
- Render an animation at a specific resolution, by passing a Python expression:

View File

@@ -9,7 +9,7 @@
- Navigate the current piece on a 2D plane:
`{{Up|Down|Left|Right}} arrow key`
`{{Up|Down|Left|Right arrow key}}`
- Rotate the piece on its axis:
@@ -17,7 +17,7 @@
- Hard drop the current piece:
`Spacebar`
`<Spacebar>`
- Pause/unpause the game:

View File

@@ -22,7 +22,7 @@
- List the files in a backup stored on a remote machine, via ssh:
`duplicity list-current-files --time {{YYYY-MM-DD}} scp://{{user@hostname}}/path/to/backup/dir`
`duplicity list-current-files --time {{YYYY-MM-DD}} scp://{{user@hostname}}/{{path/to/backup/dir}}`
- Restore a subdirectory from a GnuPG-encrypted local backup to a given location:

View File

@@ -25,12 +25,12 @@
- Navigate forwards and backwards through the links on a page:
`Up arrow key, Down arrow key`
`{{Up arrow key|Down arrow key}}`
- Go back to the previously displayed page:
`Left arrow key OR u`
`{{Left arrow key|u}}`
- Exit:
`q then y`
`q + y`

View File

@@ -25,4 +25,4 @@
- Seek backward or forward 10 seconds:
`<Left> OR <Right>`
`{{Left|Right}}`

View File

@@ -13,7 +13,7 @@
- Navigate the board:
`{{h|j|k|l}} OR {{Left|Down|Up|Right}} arrow key`
`{{h|j|k|l}} OR {{Left|Down|Up|Right arrow key}}`
- Delete a number:

View File

@@ -10,7 +10,7 @@
- Enter a string into the current cell:
`< OR >`
`{{<|>}}`
- Enter a numeric constant into the current cell:

View File

@@ -33,4 +33,4 @@
- Download a playlist and extract MP3s from it:
`youtube-dl -f "bestaudio" --continue --no-overwrites --ignore-errors --extract-audio --audio-format mp3 -o "%(title)s.%(ext)s" {{url_to_playlist}}`
`youtube-dl -f "bestaudio" --continue --no-overwrites --ignore-errors --extract-audio --audio-format mp3 -o "%(title)s.%(ext)s" '{{url_to_playlist}}'`