8000 Fix typos · symfony/symfony-docs@1b3c188 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1b3c188

Browse files
committed
Fix typos
1 parent 30bfe8a commit 1b3c188

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

console/manipulating_output.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ information can be manipulated by clearing or overwriting the displayed content.
77
In order to manipulate the content, you need to create a new output section. An output section is
88
a part in the terminal where information will be displayed from the console.
99

10-
A section can be manipulated individually, and multiple sections can appended to the output.
10+
A section can be manipulated individually, and multiple sections can be appended to the output.
1111

1212
To create a new output section, you need to use the
1313
:method:`Symfony\\Component\\Console\\Output\\ConsoleOutput::section` method::
@@ -20,7 +20,7 @@ To create a new output section, you need to use the
2020
}
2121
}
2222

23-
This will return an instance of of the :class:`Symfony\\Component\\Console\\Output\\ConsoleSectionOutput`
23+
This will return an instance of the :class:`Symfony\\Component\\Console\\Output\\ConsoleSectionOutput`
2424

2525
.. tip::
2626

@@ -32,7 +32,6 @@ This will return an instance of of the :class:`Symfony\\Component\\Console\\Outp
3232

3333
Displaying information in a section will always append a new line to the output.
3434

35-
3635
Overwriting Output
3736
------------------
3837

@@ -45,11 +44,11 @@ When displaying information in the console, you can overwrite the output by usin
4544
The only information displayed in the terminal will be ``World!`` as the first part will
4645
be overwritten.
4746

48-
Clearing s Section
47+
Clearing a Section
4948
------------------
5049

5150
You can clear all the content in a section by using the
52-
:method:`Symfony\\Component\\Console\\Output\\ConsoleSectionOutput::overwrite` method.
51+
:method:`Symfony\\Component\\Console\\Output\\ConsoleSectionOutput::clear` method.
5352

5453
Clearing a section will erase all the content that is displayed in that section::
5554

0 commit comments

Comments
 (0)
0