From 7e8e51580fe4c07b76e0cba55132623c69d00b94 Mon Sep 17 00:00:00 2001 From: gnito-org <70450336+gnito-org@users.noreply.github.com> Date: Tue, 14 Dec 2021 17:44:19 -0400 Subject: [PATCH] Correct spelling & grammar in 4.4 quick_tour/ --- quick_tour/flex_recipes.rst | 4 ++-- quick_tour/the_architecture.rst | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/quick_tour/flex_recipes.rst b/quick_tour/flex_recipes.rst index 1b929667b92..7df715aca5a 100644 --- a/quick_tour/flex_recipes.rst +++ b/quick_tour/flex_recipes.rst @@ -29,7 +29,7 @@ are included in your ``composer.json`` file: "symfony/yaml": "^4.1" } -This makes Symfony different than any other PHP framework! Instead of starting with +This makes Symfony different from any other PHP framework! Instead of starting with a *bulky* app with *every* possible feature you might ever need, a Symfony app is small, simple and *fast*. And you're in total control of what you add. @@ -253,7 +253,7 @@ Not convinced yet? No problem: remove the library: $ composer remove api -Flex will *uninstall* the recipes: removing files and un-doing changes to put your +Flex will *uninstall* the recipes: removing files and undoing changes to put your app back in its original state. Experiment without worry. More Features, Architecture and Speed diff --git a/quick_tour/the_architecture.rst b/quick_tour/the_architecture.rst index 0d640d1746d..50bb4e34708 100644 --- a/quick_tour/the_architecture.rst +++ b/quick_tour/the_architecture.rst @@ -290,8 +290,7 @@ Environment Variables --------------------- Every app contains configuration that's different on each server - like database -connection information or passwords. How should these be stored? In files? Or some -other way? +connection information or passwords. How should these be stored? In files? Or another way? Symfony follows the industry best practice by storing server-based configuration as *environment* variables. This means that Symfony works *perfectly* with