From 5a18f120c7926e01e3b895b05789f8d3e616344f Mon Sep 17 00:00:00 2001 From: Sebastian Riedel Date: Tue, 21 Nov 2023 11:04:50 +0100 Subject: [PATCH] Fix typo in growing guide --- lib/Mojolicious/Guides/Growing.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Mojolicious/Guides/Growing.pod b/lib/Mojolicious/Guides/Growing.pod index c1d2843bf8..9dae759cbb 100644 --- a/lib/Mojolicious/Guides/Growing.pod +++ b/lib/Mojolicious/Guides/Growing.pod @@ -379,7 +379,7 @@ Sessions in L pretty much just work out of the box once you start u L, there is no setup required, but we suggest setting a more secure passphrase with L. - $app->secrets(['Mojolicious rocks']); + app->secrets(['Mojolicious rocks']); This passphrase is used by the HMAC-SHA256 algorithm to make signed cookies tamper resistant and can be changed at any time to invalidate all existing sessions.