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

[Fix]: typos in YAML.md #88

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions YAML/YAML.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
### YAML:
It was first called Yet Another MarkUp Langugae but now it is Yaml Ain't MarkUp Language.
### Definition:
Applications written with different technologies or languages which have different *Data Structures* can transfer data to each other using a *Common/ Standerd Format*. YAML, JSON and XML are these formats
Applications written with different technologies or languages which have different *Data Structures* can transfer data to each other using a *Common/ Standard Format*. YAML, JSON and XML are these formats

It is a Data Serialization Language
- Data Serialization:
Translation of Object (Code + Data) into stream of bytes that saves the state of this object in a form that is transmittable. Using Serialization, data can be converted into code and code can be converted into data again.

Benifits of YAML:
Benefits of YAML:
- Simple and easy to read
- Nice and Strict Syntax
- Most Languages use it
- More powerful when representing complex data

***Note: Any JSON input can be converted to YAML output and vice virse***
***Note: Any JSON input can be converted to YAML output and vice versa***

### SYNTAX

Expand Down