Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/Core.fs
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,8 @@ module Core =
/// Additive rather than a change to <c>bindJson</c>: apps opt in where they want it.
/// </remarks>
/// <param name="f">A function which accepts an object of type 'T and returns a <see cref="HttpHandler"/> function.</param>
/// <param name="next"></param>
/// <param name="ctx"></param>
/// <typeparam name="'T"></typeparam>
/// <returns>A Giraffe <see cref="HttpHandler"/> function which can be composed into a bigger web application.</returns>
let inline validateJson<'T> (f: 'T -> HttpHandler) : HttpHandler =
Expand Down Expand Up @@ -319,7 +321,6 @@ module Core =
/// It also sets the HTTP Content-Type header to application/json and sets the Content-Length header accordingly.
/// </summary>
/// <param name="dataObj">The object to be send back to the client.</param>
/// <param name="ctx"></param>
/// <typeparam name="'T"></typeparam>
/// <returns>A Giraffe <see cref="HttpHandler" /> function which can be composed into a bigger web application.</returns>
/// <remarks>
Expand Down