@@ -45,7 +45,7 @@ So how does this front-controller work? At first, the special
45
45
the component. This file runs the following logic:
46
46
47
47
#. It instantiates a :class: `Symfony\\ Component\\ Runtime\\ RuntimeInterface `;
48
- #. The callable (returned in the file ) is passed to the Runtime, whose job
48
+ #. The callable (returned by `` public/index.php `` ) is passed to the Runtime, whose job
49
49
is to resolve the arguments (in this example: ``array $content ``);
50
50
#. Then, this callable is called to get the application (``App\Kernel ``);
51
51
#. At last, the Runtime is used to run the application (i.e. calling
@@ -107,7 +107,7 @@ Use the ``APP_RUNTIME`` environment variable or by specifying the
107
107
Using the Runtime
108
108
-----------------
109
109
110
- A Runtime is resposible for passing arguments into the closure and run the
110
+ A Runtime is responsible for passing arguments into the closure and run the
111
111
application returned by the closure. The :class: `Symfony\\ Component\\ Runtime\\ SymfonyRuntime ` and
112
112
:class: `Symfony\\ Component\\ Runtime\\ GenericRuntime ` supports a number of
113
113
arguments and different applications that you can use in your
@@ -245,7 +245,7 @@ The ``GenericRuntime`` and ``SymfonyRuntime`` also support these generic
245
245
applications:
246
246
247
247
:class: `Symfony\\ Component\\ Runtime\\ RunnerInterface `
248
- The ``RuntimeInterface `` is a way to use a custom application with the
248
+ The ``RunnerInterface `` is a way to use a custom application with the
249
249
generic Runtime::
250
250
251
251
<?php
@@ -395,7 +395,7 @@ For instance, imagine you want to create a runtime for `ReactPHP`_:
395
395
396
396
**What arguments will the end user use? **
397
397
398
- For a generic ReactPHP application, there are no special arguments are
398
+ For a generic ReactPHP application, no special arguments are
399
399
typically required. This means that you can use the
400
400
:class: `Symfony\\ Component\\ Runtime\\ GenericRuntime `.
401
401
0 commit comments