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 #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/doc/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This glossary identifies the YAML terms and gives their meanings.
| Dump/Dumper | A dumper is the set of stack transformations that convert data from a program memory structure to YAML text.
| Explicit key | The `?` explicit key indicator is used in block mappings to convey that the node that follows it is a mapping key. This is most commonly used for mapping keys that are collections.
| Flow | The term *flow* is used to describe the YAML syntax form that uses `{}` and `[]` indicators for collection scoping. It is a proper superset of the JSON syntax. Flow nodes can appear inside of block nodes, but block nodes cannot appear inside of flow nodes.
| Folded scalar | The folded syntax form is a block scalar indicated by `>` syntax and is followed by text lines that are indented past the current level. The text lines are joined together according to rather complex rules. The general rule is that 2 adjacent, non-blank lines are joined by a single space. Analagous to HTML text folding.
| Folded scalar | The folded syntax form is a block scalar indicated by `>` syntax and is followed by text lines that are indented past the current level. The text lines are joined together according to rather complex rules. The general rule is that 2 adjacent, non-blank lines are joined by a single space. Analogous to HTML text folding.
| Framework | A YAML implementation in a given programming language is called a framework.
| Kind | YAML has 3 *kinds* of nodes: mapping, sequence and scalar.
| Literal scalar | The *literal* block scalar form is used for multiline text. It begins with the `|` indicator. The text lines are indented past the current indentation level, but otherwise left as is. This is the best way to represent multiline plain text files in YAML.
Expand Down
2 changes: 1 addition & 1 deletion src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ Over the past decade, YAML has continuously grown in popularity, adoption and us
YAML is commonly used as a configuration language, but it was designed to be a general purpose language for data.

The purpose of the YAML Data Project is to provide information about the YAML language, and the projects that surround it.
To continue being a vital part of the technology ecosystem, YAML needs to evolve to accomodate the needs of communities it serves.
To continue being a vital part of the technology ecosystem, YAML needs to evolve to accommodate the needs of communities it serves.
In 2020, there are renewed efforts to bring these changes to fruition.