From c84cff88839672a423bdb5214279847d873181c5 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 8 Nov 2017 20:53:59 +0100 Subject: [PATCH] Minor reword in autowiring introduction --- service_container/autowiring.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/service_container/autowiring.rst b/service_container/autowiring.rst index e3ae5a5743c..24771867b09 100644 --- a/service_container/autowiring.rst +++ b/service_container/autowiring.rst @@ -4,11 +4,11 @@ Defining Services Dependencies Automatically (Autowiring) ========================================================= -Autowiring allows you to manage services in the container with minimal configuration. -It reads the type-hints on your constructor (or other methods) and automatically -passes you the correct services. Symfony's autowiring is designed to be predictable: -if it is not absolutely clear which dependency should be passed, you'll see an -actionable exception. +Autowiring allows you to manage services in the container with minimal +configuration. It reads the type-hints on your constructor (or other methods) +and automatically passes the correct services to each method. Symfony's +autowiring is designed to be predictable: if it is not absolutely clear which +dependency should be passed, you'll see an actionable exception. .. tip::