From d23f6ecb11241006ba5f0a8d2cd0c15a63ac9883 Mon Sep 17 00:00:00 2001 From: Muhammed Bacalan Date: Mon, 20 May 2024 16:55:06 +0200 Subject: [PATCH] Update README.md Fix "more examples" link not taking you to where more examples are at Closes #246 Signed-off-by: Muhammed Bacalan --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 06119bb..3aef6a4 100644 --- a/README.md +++ b/README.md @@ -59,8 +59,7 @@ secret key used to authenticate the session. Inside the handler, we call some session values in session.Values, which is a `map[interface{}]interface{}`. And finally we call `session.Save()` to save the session in the response. -More examples are available [on the Gorilla -website](https://www.gorillatoolkit.org/pkg/sessions). +More examples are available at [package documentation](https://pkg.go.dev/github.com/gorilla/sessions). ## Store Implementations