From 6a5fe5aee836ce9f511f407a6ec2cc5c496e5fa1 Mon Sep 17 00:00:00 2001 From: Success Go Date: Sun, 12 Jan 2020 21:41:29 +0800 Subject: [PATCH] Fix typo of `permanent` Former-commit-id: 4ec356729f77ee54847f0dc7539498aca37943cc --- configuration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.go b/configuration.go index 72d5224a..af003e01 100644 --- a/configuration.go +++ b/configuration.go @@ -879,7 +879,7 @@ func (c Configuration) GetVHost() string { // DisablePathCorrection corrects and redirects the requested path to the registered path // for example, if /home/ path is requested but no handler for this Route found, // then the Router checks if /home handler exists, if yes, -// (permant)redirects the client to the correct path /home. +// (permanent)redirects the client to the correct path /home. func (c Configuration) GetDisablePathCorrection() bool { return c.DisablePathCorrection }