From f5c5a447837d1ecb908306dafa4bd87f990f9bb0 Mon Sep 17 00:00:00 2001 From: razonyang Date: Wed, 1 Nov 2017 17:40:38 +0800 Subject: [PATCH] Updated README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 37769e9..272e7b9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ FastRouter is a fast, flexible HTTP router written in Go. -FastRouter exports options to custom router, such as `TrailingSlashesPolicy`, `PanicHandler`, `OptionsHandler`, +FastRouter contains some customizable options, such as `TrailingSlashesPolicy`, `PanicHandler`, `OptionsHandler`, `MethodNotAllowedHandler`, `NotFoundHandler` and so on. FastRouter also provides some useful features, such as **grouping** and **middleware**. @@ -16,8 +16,8 @@ FastRouter also provides some useful features, such as **grouping** and **middle **Fast**: See [Benchmark](#benchmark) -**Flexible**: FastRouter export some useful options for you: -- TrailingSlashesPolicy: there are four policies available: +**Flexible**: FastRouter provides some customizable options for you: +- TrailingSlashesPolicy: - IgnoreTrailingSlashes: ignore trailing slashes. - AppendTrailingSlashes: append trailing slashes and redirect if request path is not end with '/'. - RemoveTrailingSlashes: remove trailing slashes and redirect if request path is end with '/'.