From ad39feb01e3a71894c468074e72422c02b743991 Mon Sep 17 00:00:00 2001 From: "Julian K. Arni" Date: Sun, 11 Oct 2015 21:08:45 +0200 Subject: [PATCH] Fix 'Delete' documentation. --- servant/src/Servant/API/Delete.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servant/src/Servant/API/Delete.hs b/servant/src/Servant/API/Delete.hs index 0329066a..de792a28 100644 --- a/servant/src/Servant/API/Delete.hs +++ b/servant/src/Servant/API/Delete.hs @@ -11,7 +11,7 @@ import Data.Typeable (Typeable) -- Example: -- -- >>> -- DELETE /books/:isbn --- >>> type MyApi = "books" :> Capture "isbn" Text :> Delete +-- >>> type MyApi = "books" :> Capture "isbn" Text :> Delete '[] () data Delete (contentTypes :: [*]) a deriving Typeable