Skip to content

Commit 4f9eb73

Browse files
committed
Fix typos
1 parent 30bfe8a commit 4f9eb73

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

console/manipulating_output.rst

Lines changed: 3 additions & 4 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::
@@ -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)