Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor symfony#12880 Fix invalid yaml (jschaedl)
This PR was merged into the 4.3 branch. Discussion ---------- Fix invalid yaml Because `deprecated: 'The "%alias_id%" alias is deprecated. Don\'t use it anymore.'` is not valid Yaml, it leads to this error: [OK] All 1 YAML files contain valid syntax. >> Unexpected characters near "t use it anymore. The yaml specification says: > All non-printable characters must be escaped. YAML escape sequences use the “\” notation common to most modern computer languages. Each escape sequence must be parsed into the appropriate Unicode character. The original escape sequence is a presentation detail and must not be used to convey content information. > Note that escape sequences are only interpreted in double-quoted scalars. In all other scalar styles, the “\” character has no special meaning and non-printable characters are not available. So I think removing the `'` will help users who copy the configuration from the documentation. Commits ------- 84151dc Fix invalid yaml
- Loading branch information