From 8be8dca482370976ef09a23b6fb2e26db827b338 Mon Sep 17 00:00:00 2001 From: Yong Wen Chua Date: Tue, 12 Mar 2019 14:53:44 +0800 Subject: [PATCH] Fix wording --- src/lib.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 59ae0fc..cc3fb17 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -592,11 +592,10 @@ impl AllowedOrigins { /// Origins that are allowed to make CORS requests. /// -/// An origin is defined according -/// [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin) defined here. +/// An origin is defined according to the defined +/// [syntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin). /// -/// Origins can be specified as an exact match or via some other supported way according to the -/// fields of the struct. +/// Origins can be specified as an exact match or using regex. /// /// These Origins are specified as logical `ORs`. That is, if any of the origins match, the entire /// request is considered to be valid.