1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-01 04:51:51 +02:00

Update MIGRATION.md (#2315)

Minor edit
This commit is contained in:
CGMossa
2021-07-12 03:02:19 +02:00
committed by GitHub
parent d8deed0475
commit 7ae132cb68

View File

@@ -5,8 +5,8 @@
routes defined with trailing slashes will become inaccessible when
using `NormalizePath::default()`.
Before: `#[get("/test/")`
After: `#[get("/test")`
Before: `#[get("/test/")]`
After: `#[get("/test")]`
Alternatively, explicitly require trailing slashes: `NormalizePath::new(TrailingSlash::Always)`.