From 6024e16ea1f894c60354f645cbb1c7d888100d20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Wed, 1 May 2019 10:47:21 +0200 Subject: [PATCH 1/2] Reword VarDumper description It is hard to understand what "Built on top" refers to, and even when knowing, the sentence looks weird. --- src/Symfony/Component/VarDumper/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/VarDumper/README.md b/src/Symfony/Component/VarDumper/README.md index 3b5d55f5f5..339f73eba3 100644 --- a/src/Symfony/Component/VarDumper/README.md +++ b/src/Symfony/Component/VarDumper/README.md @@ -2,8 +2,8 @@ VarDumper Component =================== The VarDumper component provides mechanisms for walking through any arbitrary -PHP variable. Built on top, it provides a better `dump()` function that you -can use instead of `var_dump`. +PHP variable. It provides a better `dump()` function that you can use instead +of `var_dump`. Resources --------- From e11985f0016f40afd837e3fba9b1df13f2823d2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Sch=C3=A4dlich?= Date: Wed, 1 May 2019 13:10:09 +0200 Subject: [PATCH 2/2] [Translation] Fixes typo in comment --- src/Symfony/Component/Translation/Util/ArrayConverter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Translation/Util/ArrayConverter.php b/src/Symfony/Component/Translation/Util/ArrayConverter.php index 0276294f62..22c602e719 100644 --- a/src/Symfony/Component/Translation/Util/ArrayConverter.php +++ b/src/Symfony/Component/Translation/Util/ArrayConverter.php @@ -27,7 +27,7 @@ class ArrayConverter { /** * Converts linear messages array to tree-like array. - * For example this rray('foo.bar' => 'value') will be converted to ['foo' => ['bar' => 'value']]. + * For example this array('foo.bar' => 'value') will be converted to ['foo' => ['bar' => 'value']]. * * @param array $messages Linear messages array *