spelling fixes

This commit is contained in:
klemens 2017-02-11 12:12:36 +01:00 committed by Nicolas Grekas
parent d3673a83ae
commit 6ccc479d72
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Tests\Style\SymfonyStyleWithForcedLineLength; use Symfony\Component\Console\Tests\Style\SymfonyStyleWithForcedLineLength;
//Ensure has proper line ending before outputing a text block like with SymfonyStyle::listing() or SymfonyStyle::text() //Ensure has proper line ending before outputting a text block like with SymfonyStyle::listing() or SymfonyStyle::text()
return function (InputInterface $input, OutputInterface $output) { return function (InputInterface $input, OutputInterface $output) {
$output = new SymfonyStyleWithForcedLineLength($input, $output); $output = new SymfonyStyleWithForcedLineLength($input, $output);

View File

@ -51,7 +51,7 @@ class ReplaceAliasByActualDefinitionPass implements CompilerPassInterface
if (isset($replacements[$targetId])) { if (isset($replacements[$targetId])) {
$container->setAlias($definitionId, $replacements[$targetId]); $container->setAlias($definitionId, $replacements[$targetId]);
} }
// No neeed to process the same target twice // No need to process the same target twice
if (isset($seenAliasTargets[$targetId])) { if (isset($seenAliasTargets[$targetId])) {
continue; continue;
} }

View File

@ -174,7 +174,7 @@ class MoFileLoader extends ArrayLoader
} }
/** /**
* Reads an unsigned long from stream respecting endianess. * Reads an unsigned long from stream respecting endianness.
* *
* @param resource $stream * @param resource $stream
* @param bool $isBigEndian * @param bool $isBigEndian