Skip to content

Commit

Permalink
REFACTOR: Correction of simple errors in the files.es.md file (#1019)
Browse files Browse the repository at this point in the history
REFACTOR: Correction of simple errors in the files.es.md file
  • Loading branch information
TheHandyOwl authored Dec 7, 2024
1 parent 4582ad7 commit a4c499f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/advanced/files.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Si se utiliza `EventLoopFuture`, el futuro devuelto indicará cuándo ha complet
El método `streamFile` convierte un archivo de transmisión en una respuesta `Response`. Este método establecerá automáticamente los encabezados apropiados, como `ETag` y `Content-Type`.

```swift
// Ttransmite el archivo como una respuesta HTTP de forma asíncrona.
// Transmite el archivo como una respuesta HTTP de forma asíncrona.
req.fileio.streamFile(at: "/path/to/file").map { res in
print(res) // Response
}
Expand All @@ -53,7 +53,7 @@ let buffer = req.fileio.collectFile(at: "/path/to/file")
print(buffer)
```

!!! Warning "Advertencia"
!!! warning "Advertencia"
Este método requiere que el archivo entero esté en la memoria desde el inicio. Utilice una lectura por fragmentos (chunked) o flujo contínuo (streaming) para limitar el uso de memoria.

## Escritura
Expand Down

0 comments on commit a4c499f

Please sign in to comment.