Skip to content

Commit 6e4f8d6

Browse files
committed
fix: missing z in url templating
Signed-off-by: Vincent Biret <[email protected]>
1 parent 60a747f commit 6e4f8d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/oas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ path-template = "/" *( path-segment "/" ) [ path-segment ]
5151
path-segment = 1*( path-literal / template-expression )
5252
path-literal = 1*pchar
5353
template-expression = "{" template-expression-param-name "}"
54-
template-expression-param-name = 1*( %x00-79 / %x7C / %x7E-10FFFF ) ; every UTF8 character except { and }
54+
template-expression-param-name = 1*( %x00-7A / %x7C / %x7E-10FFFF ) ; every UTF8 character except { and }
5555
5656
pchar = unreserved / pct-encoded / sub-delims / ":" / "@"
5757
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"

0 commit comments

Comments
 (0)