From 87641cf82f3b00a48dbc7460201ef664437e38cb Mon Sep 17 00:00:00 2001 From: Asad Saeeduddin Date: Fri, 23 Apr 2021 20:42:05 -0400 Subject: [PATCH] Fix links to sections in RFC 6570 --- src/Data/OpenApi/Internal.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Data/OpenApi/Internal.hs b/src/Data/OpenApi/Internal.hs index f6ae8811..075f26e6 100644 --- a/src/Data/OpenApi/Internal.hs +++ b/src/Data/OpenApi/Internal.hs @@ -369,13 +369,13 @@ data Style = StyleMatrix -- ^ Path-style parameters defined by [RFC6570](https://tools.ietf.org/html/rfc6570#section-3.2.7). | StyleLabel - -- ^ Label style parameters defined by [RFC6570](https://tools.ietf.org/html/rfc6570#section-3.2.7). + -- ^ Label style parameters defined by [RFC6570](https://tools.ietf.org/html/rfc6570#section-3.2.5). | StyleForm - -- ^ Form style parameters defined by [RFC6570](https://tools.ietf.org/html/rfc6570#section-3.2.7). + -- ^ Form style parameters defined by [RFC6570](https://tools.ietf.org/html/rfc6570#section-3.2.8). -- This option replaces @collectionFormat@ with a @csv@ (when @explode@ is false) or @multi@ -- (when explode is true) value from OpenAPI 2.0. | StyleSimple - -- ^ Simple style parameters defined by [RFC6570](https://tools.ietf.org/html/rfc6570#section-3.2.7). + -- ^ Simple style parameters defined by [RFC6570](https://tools.ietf.org/html/rfc6570#section-3.2.6). -- This option replaces @collectionFormat@ with a @csv@ value from OpenAPI 2.0. | StyleSpaceDelimited -- ^ Space separated array values.