Skip to content

Commit f279446

Browse files
authored
Fix highlights - use double tics
1 parent 85601c0 commit f279446

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/LiveComponent/doc/index.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,7 @@ to handle the files and tell the component when the file should be sent:
11721172
<button data-action="live#action" data-action-name="files|my_action" />
11731173
</p>
11741174

1175-
To send a file (or files) with an action use `files` modifier.
1175+
To send a file (or files) with an action use ``files`` modifier.
11761176
Without an argument it will send all pending files to your action.
11771177
You can also specify a modifier parameter to choose which files should be upload.
11781178

@@ -1191,7 +1191,7 @@ You can also specify a modifier parameter to choose which files should be upload
11911191
<button data-action="live#action" data-action-name="files|myAction" />
11921192
</p>
11931193

1194-
The files will be available in a regular `$request->files` files bag::
1194+
The files will be available in a regular ``$request->files`` files bag::
11951195

11961196
// src/Components/FileUpload.php
11971197
namespace App\Components;
@@ -1219,8 +1219,8 @@ The files will be available in a regular `$request->files` files bag::
12191219
.. tip::
12201220

12211221
Remember that in order to send multiple files from a single input you
1222-
need to specify `multiple` attribute on HTML element and end `name`
1223-
with `[]`.
1222+
need to specify ``multiple`` attribute on HTML element and end ``name``
1223+
with ``[]``.
12241224

12251225
.. _forms:
12261226

0 commit comments

Comments
 (0)