From 17b93abd4b5c8292293edfdb73b6f0e6c9efeab6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9?= Date: Fri, 26 Apr 2024 22:37:25 +0200 Subject: [PATCH] [v3 Maintenance]: Consolidate and Document Core Changes in v3 --- docs/whats_new.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/whats_new.md b/docs/whats_new.md index 001fe34e69..12750bebb9 100644 --- a/docs/whats_new.md +++ b/docs/whats_new.md @@ -147,7 +147,7 @@ app.Route("/api").Route("/user/:id?") We have aligned our method for middlewares closer to express and now also support the [`Use`](./api/app#use) of multiple prefixes. -Registering a subapp is now also possible via the [`Use`](./api/app#use) method instead of the old [`v2 Mount`](/v2.x/api/app#use) method. +Registering a subapp is now also possible via the [`Use`](./api/app#use) method instead of the old `app.Mount` method. ```diff - Use(args ...interface{}) Router