Skip to content

Commit 115ff31

Browse files
lyrixxweaverryan
authored andcommitted
Fixed markup
1 parent 28ddf9f commit 115ff31

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/process.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can install the component in many different ways:
1818
Usage
1919
-----
2020

21-
The `:class:Symfony\\Component\\Process\\Process` class allows you to execute
21+
The :class:`Symfony\\Component\\Process\\Process` class allows you to execute
2222
a command in a sub-process::
2323

2424
use Symfony\Component\Process\Process;
@@ -32,14 +32,14 @@ a command in a sub-process::
3232

3333
print $process->getOutput();
3434

35-
The ``:method::Symfony\\Component\\Process\\Process:run()`` method takes care
35+
The :method:`Symfony\\Component\\Process\\Process::run` method takes care
3636
of the subtle differences between the different platforms when executing the
3737
command.
3838

3939
When executing a long running command (like rsync-ing files to a remote
4040
server), you can give feedback to the end user in real-time by passing an
4141
anonymous function to the
42-
``:method::Symfony\\Component\\Process\\Process:run()`` method::
42+
:method:`Symfony\\Component\\Process\\Process::run` method::
4343

4444
use Symfony\Component\Process\Process;
4545

@@ -66,7 +66,7 @@ instead::
6666
The ``ProcessBuilder`` class has been as of 2.1.
6767

6868
To make your code work better on all platforms, you might want to use the
69-
``:class:Symfony\Component\Process\ProcessBuilder`` class instead::
69+
:class:`Symfony\\Component\\Process\\ProcessBuilder` class instead::
7070

7171
use Symfony\Component\Process\ProcessBuilder;
7272

0 commit comments

Comments
 (0)