Skip to content
Merged

typos #119

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/sorting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Example:
GET /persons?sort=name HTTP/1.1
Accept: application/vnd.api+json

Muliple sort
------------
Multiple sort
-------------

You can sort on multiple fields like that:

Expand All @@ -28,7 +28,7 @@ You can sort on multiple fields like that:
GET /persons?sort=name,birth_date HTTP/1.1
Accept: application/vnd.api+json

Descendant sort
Descending sort
---------------

You can make desc sort with the character "-" like that:
Expand All @@ -38,8 +38,8 @@ You can make desc sort with the character "-" like that:
GET /persons?sort=-name HTTP/1.1
Accept: application/vnd.api+json

Muliple sort + Descendant sort
------------------------------
Multiple sort + Descending sort
-------------------------------

Of course, you can combine both like that:

Expand Down