🧚 A practical web framework for Gleam

Fix typo in docstring

authored by Cort Spellman and committed by Louis Pilfold adbc1e16 142a1da2

Changed files
+1 -1
src
+1 -1
src/wisp.gleam
··· 723 723 /// 724 724 /// This limit only applies for files in a multipart body that get streamed to 725 725 /// disc. For headers and other content that gets read into memory use the 726 - /// `max_files_size` limit. 726 + /// `max_body_size` limit. 727 727 /// 728 728 pub fn set_max_files_size(request: Request, size: Int) -> Request { 729 729 internal.Connection(..request.body, max_files_size: size)