🧚 A practical web framework for Gleam

Add 'Security' param to get_cookie example

The 'get_cookie' example is not in sync with the arguments required.

authored by adkelley and committed by Louis Pilfold 8f4ae45a a824bd82

Changed files
+1 -1
src
+1 -1
src/wisp.gleam
··· 1794 1794 /// for a signed cookie, then `Error(Nil)` is returned. 1795 1795 /// 1796 1796 /// ```gleam 1797 - /// wisp.get_cookie(request, "group") 1797 + /// wisp.get_cookie(request, "group", wisp.PlainText) 1798 1798 /// // -> Ok("A") 1799 1799 /// ``` 1800 1800 ///