Skip to content

Commit d1ce259

Browse files
committed
nit: changes the server variable name to avoid confusion and allow for diverging future updates
Signed-off-by: Vincent Biret <[email protected]>
1 parent e3f9dca commit d1ce259

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/oas.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -560,9 +560,9 @@ An object representing a Server Variable for server URL template substitution.
560560
The server URL templating is defined by the following [ABNF](https://tools.ietf.org/html/rfc5234) syntax.
561561
562562
```abnf
563-
server-url-template = 1*( literals / template-expression )
564-
template-expression = "{" template-expression-param-name "}"
565-
template-expression-param-name = 1*( %x00-79 / %x7C / %x7E-10FFFF ) ; every UTF8 character except { and }
563+
server-url-template = 1*( literals / server-variable )
564+
server-variable = "{" server-variable-name "}"
565+
server-variable-name = 1*( %x00-79 / %x7C / %x7E-10FFFF ) ; every UTF8 character except { and }
566566

567567
literals = 1*( %x21 / %x23-24 / %x26-3B / %x3D / %x3F-5B
568568
/ %x5D / %x5F / %x61-7A / %x7E / ucschar / iprivate

0 commit comments

Comments
 (0)