🧚 A practical web framework for Gleam

(docs): Fix string_body example typo: using string_builder_body.

authored by johnbakhmat.dev and committed by Louis Pilfold 754bd38e 8f4ae45a

Changed files
+1 -1
src
+1 -1
src/wisp.gleam
··· 360 360 /// ```gleam 361 361 /// let body = 362 362 /// response(201) 363 - /// |> string_builder_body("Hello, Joe!") 363 + /// |> string_body("Hello, Joe!") 364 364 /// // -> Response( 365 365 /// // 201, 366 366 /// // [],