mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-04-30 14:14:09 +02:00
Merge 1d7846b0f9 into fafd11f809
This commit is contained in:
commit
844ddf2a5c
11
changelogs/client_server/newsfragments/2357.clarification
Normal file
11
changelogs/client_server/newsfragments/2357.clarification
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
Fixes a typo in `/rooms/{roomId}/relations/{eventId}`.
|
||||
|
||||
The specification says about the `from` request query parameter:
|
||||
|
||||
> The pagination token to start returning results from. If not supplied, results start at the most recent topological event known to the server.
|
||||
>
|
||||
> Can be a `next_batch` or `prev_batch` token from a previous call, or a returned `start` token from `/messages`, or a `next_batch` token from `/sync`.
|
||||
|
||||
The last part is wrong. It should be:
|
||||
|
||||
> … or a `prev_batch` token from `/sync`.
|
||||
|
|
@ -254,7 +254,7 @@ components:
|
|||
|
||||
Can be a `next_batch` or `prev_batch` token from a previous call, or a returned
|
||||
`start` token from [`/messages`](/client-server-api/#get_matrixclientv3roomsroomidmessages),
|
||||
or a `next_batch` token from [`/sync`](/client-server-api/#get_matrixclientv3sync).
|
||||
or a `prev_batch` token from [`/sync`](/client-server-api/#get_matrixclientv3sync).
|
||||
required: false
|
||||
example: page2_token
|
||||
schema:
|
||||
|
|
|
|||
Loading…
Reference in a new issue