Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9a6e14e

Browse files
author
Christian Flothmann
committed
[Yaml] more fixes to changelog and upgrade files
1 parent 074a4bf commit 9a6e14e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

UPGRADE-2.8.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,5 +511,5 @@ Yaml
511511

512512
* Deprecated usage of a colon in an unquoted mapping value
513513
* Deprecated usage of `@`, `` ` ``, `|`, and `>` at the beginning of an unquoted string
514-
* Deprecated non-escaped \ in double-quoted strings when parsing Yaml
515-
("Foo\Var" is not valid whereas "Foo\\Var" is)
514+
* Deprecated non-escaped `\` in double-quoted strings when parsing Yaml
515+
(`Foo\Var` is not valid whereas `Foo\\Var` is)

UPGRADE-3.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,8 +1230,8 @@ UPGRADE FROM 2.x to 3.0
12301230

12311231
* Using a colon in an unquoted mapping value leads to a `ParseException`.
12321232
* Starting an unquoted string with `@`, `` ` ``, `|`, or `>` leads to a `ParseException`.
1233-
* Deprecated non-escaped \ in double-quoted strings when parsing Yaml
1234-
("Foo\Var" is not valid whereas "Foo\\Var" is)
1233+
* Using non-escaped `\` in double-quoted strings leads to a `ParseException`
1234+
`Foo\Var` is not valid whereas `Foo\\Var` is)
12351235

12361236
* The ability to pass file names to `Yaml::parse()` has been removed.
12371237

src/Symfony/Component/Yaml/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ CHANGELOG
66

77
* Deprecated usage of a colon in an unquoted mapping value
88
* Deprecated usage of @, \`, | and > at the beginning of an unquoted string
9-
* Deprecated non-escaped \ in double-quoted strings when parsing Yaml
10-
("Foo\Var" is not valid whereas "Foo\\Var" is)
9+
* Deprecated non-escaped `\` in double-quoted strings when parsing Yaml
10+
(`Foo\Var` is not valid whereas `Foo\\Var` is)
1111

1212
2.1.0
1313
-----

0 commit comments

Comments
 (0)