Skip to content

Commit 19da2d3

Browse files
committed
docs: fix headings level
1 parent 23e5d66 commit 19da2d3

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

user_guide_src/source/libraries/uploaded_files.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ Single File
231231
If you just need to access a single file, you can use ``getFile()`` to retrieve the file instance directly. This will return an instance of ``CodeIgniter\HTTP\Files\UploadedFile``:
232232

233233
Simplest usage
234-
^^^^^^^^^^^^^^
234+
--------------
235235

236236
With the simplest usage, a single file might be submitted like::
237237

@@ -242,7 +242,7 @@ Which would return a simple file instance like::
242242
$file = $this->request->getFile('userfile');
243243

244244
Array notation
245-
^^^^^^^^^^^^^^
245+
--------------
246246

247247
If you used an array notation for the name, the input would look something like::
248248

@@ -253,7 +253,8 @@ For get the file instance::
253253
$file = $this->request->getFile('my-form.details.avatar');
254254

255255
Multiple files
256-
^^^^^^^^^^^^^^
256+
==============
257+
257258
::
258259

259260
<input type="file" name="images[]" multiple />

0 commit comments

Comments
 (0)