Skip to content

Commit 16d38ff

Browse files
committed
fixed a note about private services
1 parent f9ba347 commit 16d38ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/dependency_injection/advanced.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ argument for another service.
2020

2121
.. note::
2222

23-
If you use a private service as an argument to more than one other service,
24-
this will result in two different instances being used as the instantiation
25-
of the private service is done inline (e.g. ``new PrivateFooBar()``).
23+
If you use a private service as an argument to only one other service,
24+
this will result in an inlined instantiation (e.g. ``new PrivateFooBar()``)
25+
inside this other service, making it publicly unavailable at runtime.
2626

2727
Simply said: A service will be private when you do not want to access it
2828
directly from your code.

0 commit comments

Comments
 (0)