summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMax Schumacher <maximilianbschumacher@gmail.com>2020-10-20 12:38:50 +0200
committerGitHub <noreply@github.com>2020-10-20 12:38:50 +0200
commit7260961ef84cb7b8ef018b8f60df894b43af04cb (patch)
treeae36e16c189cfd2291dbc0389ee80fc9ff645bed
parent33cd1f57ef49f4ed0817e906b7579fcf33c253a1 (diff)
parent7d6d0311893226559a1ab57609971ed190672bcd (diff)
Merge pull request #4045 from imba-tjd/patch-4
[yaml/en] Remove unused anchor
-rw-r--r--yaml.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/yaml.html.markdown b/yaml.html.markdown
index 4f10a128..6dc5905e 100644
--- a/yaml.html.markdown
+++ b/yaml.html.markdown
@@ -127,11 +127,11 @@ base: &base
# indicate that all the keys of one or more specified maps should be inserted
# into the current map.
-foo: &foo
+foo:
<<: *base
age: 10
-bar: &bar
+bar:
<<: *base
age: 20
@@ -184,5 +184,5 @@ set2:
### More Resources
-+ [YAML official website](http://yaml.org/)
++ [YAML official website](https://yaml.org/)
+ [Online YAML Validator](http://www.yamllint.com/)