Skip to content

Commit

Permalink
nitpick
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Jul 19, 2018
1 parent af30618 commit cd702de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Commands/OutlineFileCommand.php
Expand Up @@ -42,7 +42,7 @@ protected function parseFiles(InputInterface $input, OutputInterface $output): a
{
$path = $input->getArgument('path');

$output->writeln('Parsing files..');
$output->writeln('Parsing files...');

$progressBar = new ProgressBar($output);

Expand All @@ -55,7 +55,7 @@ protected function parseFiles(InputInterface $input, OutputInterface $output): a

protected function renderParsed(array $parsed, InputInterface $input, OutputInterface $output)
{
$output->writeln("\nRendering..");
$output->writeln("\nRendering...");

$renderer = new Renderer($parsed);

Expand All @@ -64,7 +64,7 @@ protected function renderParsed(array $parsed, InputInterface $input, OutputInte

protected function saveImage(string $rendered, InputInterface $input, OutputInterface $output): string
{
$output->writeln('Saving as image..');
$output->writeln('Saving as image...');

$outputFilePath = $this->getOutputFilePath($input->getOption('output'));

Expand Down

0 comments on commit cd702de

Please sign in to comment.