summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérémy Faivre <contact@jeremyfa.com>2017-02-12 00:43:10 +0100
committerGitHub <noreply@github.com>2017-02-12 00:43:10 +0100
commit62c012cabfddebfccc48a340d8f609ad271de769 (patch)
tree1e4be67a77c8ca32f024cd05ca5c5b4564e7a88e
parent4ea1e60281add31667e436b0f8a3ff19dea2b2cf (diff)
parenta454ed01e67eb157a6c2f14d4110a8d130231786 (diff)
downloadyamljs-62c012cabfddebfccc48a340d8f609ad271de769.tar.gz
Merge pull request #72 from iguntur/develop
👌 fix typo
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index d3fae46..8159b6b 100644
--- a/README.md
+++ b/README.md
@@ -129,7 +129,7 @@ Optional arguments:
yaml2json myfile.yml
# Store output inside a JSON file
-yaml2json myfile.yml > ouput.json
+yaml2json myfile.yml > output.json
# Output "pretty" (indented) JSON
yaml2json myfile.yml --pretty
@@ -141,7 +141,7 @@ yaml2json myfile.yml --pretty --save
yaml2json mydirectory --pretty --save --recursive
# Convert JSON to YAML and store output inside a JSON file
-json2yaml myfile.json > ouput.yml
+json2yaml myfile.json > output.yml
# Output YAML that will be inlined only after 8 levels of indentation
json2yaml myfile.json --depth 8