Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improving grammar #88

Merged
merged 1 commit into from
May 7, 2021
Merged
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
6 changes: 3 additions & 3 deletions docs/Documentation/renderers.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ Renderers

What are the renderers?

There we have four renderers available for your API. They are:
We have four renderers available for your API. They are:

* **[JSend](Renderers/jsend.md)**: JSend is a specification that lays down some rules for how JSON responses from web servers should be formatted. JSend focuses on application-level (as opposed to protocol- or transport-level) messaging which makes it ideal for use in REST-style applications and APIs. You can see more details [here](https://labs.omniti.com/labs/jsend)
* **[Json](Renderers/json.md)**: JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers. In this [link](http://json.org/) you can see more details.
* **[JSend](Renderers/jsend.md)**: JSend is a specification that lays down some rules for how JSON responses from web servers should be formatted. JSend focuses on application-level (as opposed to protocol- or transport-level) messaging, which makes it ideal for use in REST-style applications and APIs. You can see more details [here](https://labs.omniti.com/labs/jsend)
* **[Json](Renderers/json.md)**: JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is also easy for machines to parse and generate. JSON is a text format that is completely language independent, but uses conventions that are familiar to programmers. In this [link](http://json.org/) you can see more details.
* **[Xml](Renderers/xml.md)**: It is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. [Here](https://en.wikipedia.org/wiki/XML) you can check more details
* **[Raw](Renderers/raw.md)**: This is an unformatted response.

Expand Down