Skip to content

Commit eddf15a

Browse files
committed
Use same name as in RFC7159
1 parent 13cb466 commit eddf15a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/oas.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2553,13 +2553,13 @@ The runtime expression is defined by the following [ABNF](https://tools.ietf.org
25532553
; %x2F ('/') and %x7E ('~') are excluded from 'unescaped'
25542554
escaped = "~" ( "0" / "1" )
25552555
; representing '~' and '/', respectively
2556-
name = *( CHAR )
2556+
name = *char
25572557
token = 1*tchar
25582558
tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" / "+" / "-" / "."
25592559
/ "^" / "_" / "`" / "|" / "~" / DIGIT / ALPHA
25602560
```
25612561

2562-
Here, `json-pointer` is taken from [RFC6901](https://tools.ietf.org/html/rfc6901), `CHAR` from [RFC7159](https://tools.ietf.org/html/rfc7159#section-7) and `token` from [RFC7230](https://tools.ietf.org/html/rfc7230#section-3.2.6).
2562+
Here, `json-pointer` is taken from [RFC6901](https://tools.ietf.org/html/rfc6901), `char` from [RFC7159](https://tools.ietf.org/html/rfc7159#section-7) and `token` from [RFC7230](https://tools.ietf.org/html/rfc7230#section-3.2.6).
25632563

25642564
The `name` identifier is case-sensitive, whereas `token` is not.
25652565

0 commit comments

Comments
 (0)