🧚 A practical web framework for Gleam

Fix `Body` doc for `Bytes` variant

authored by Mathieu Darse and committed by Louis Pilfold eba47a5a b517b98a

Changed files
+2 -2
src
+2 -2
src/wisp.gleam
··· 126 126 Text(StringBuilder) 127 127 /// A body of binary data. 128 128 /// 129 - /// The body is represented using a `StringBuilder`. If you have a `String` 130 - /// you can use the `string_builder.from_string` function to convert it. 129 + /// The body is represented using a `BytesBuilder`. If you have a `BitArray` 130 + /// you can use the `bytes_builder.from_bit_array` function to convert it. 131 131 /// 132 132 Bytes(BytesBuilder) 133 133 /// A body of the contents of a file.