diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-10-27 18:17:55 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-27 18:17:55 +0530 |
commit | 22baccdd27a0d3f3f0ee702d3b639d4aa6221b89 (patch) | |
tree | fab4b1fe739d153d86d0ef397ced2b0a452467ca /yaml.html.markdown | |
parent | 2c0e40992917bdcb51e4cf971f5e5f063a10c17a (diff) | |
parent | 62e9ea6b71d7c2cbb7b408f17fba32d355ea43ba (diff) |
Merge pull request #3335 from divayprakash/fix-yaml
[yaml/en] Explain regexp, closes #2197
Diffstat (limited to 'yaml.html.markdown')
-rw-r--r-- | yaml.html.markdown | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/yaml.html.markdown b/yaml.html.markdown index ab0f9d55..d51b2147 100644 --- a/yaml.html.markdown +++ b/yaml.html.markdown @@ -121,6 +121,10 @@ other_anchor: *anchor_name base: &base name: Everyone has same name +# The regexp << is called Merge Key Language-Independent Type. It is is used to +# indicate that all the keys of one or more specified maps should be inserted +# into the current map. + foo: &foo <<: *base age: 10 |