From e6c492ab2ce07d26057634e575e08bdc64519b9d Mon Sep 17 00:00:00 2001 From: JoeMShanahan Date: Mon, 17 Jul 2017 11:18:13 +0100 Subject: [PATCH] Add hackage link to the cookie package --- doc/tutorial/Authentication.lhs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/tutorial/Authentication.lhs b/doc/tutorial/Authentication.lhs index 61eaea88..591bc595 100644 --- a/doc/tutorial/Authentication.lhs +++ b/doc/tutorial/Authentication.lhs @@ -281,7 +281,8 @@ lookupAccount key = case Map.lookup key database of For generalized authentication, servant exposes the `AuthHandler` type, which is used to wrap the `Request -> Handler user` logic. Let's create a value of type `AuthHandler Request Account` using the above `lookupAccount` -method (note: we depend upon `cookie`'s `parseCookies` for this): +method (note: we depend upon [`cookie`](https://hackage.haskell.org/package/cookie)'s +`parseCookies` for this): ```haskell import Web.Cookie (parseCookies)