diff --git a/lib/Command/CirclesCheck.php b/lib/Command/CirclesCheck.php index a32fe0220..6cf681d78 100644 --- a/lib/Command/CirclesCheck.php +++ b/lib/Command/CirclesCheck.php @@ -196,7 +196,7 @@ private function checkLoopback(InputInterface $input, OutputInterface $output, s try { [$scheme, $cloudId, $path] = $this->parseAddress($loopback); } catch (Exception $e) { - $output->writeln('format must be http[s]://domain.name[:post][/path]'); + $output->writeln('format must be http[s]://domain.name[:port][/path]'); continue; } @@ -391,7 +391,7 @@ private function checkInternal(InputInterface $input, OutputInterface $output, s try { [$scheme, $cloudId, $path] = $this->parseAddress($internal); } catch (Exception $e) { - $output->writeln('format must be http[s]://domain.name[:post][/path]'); + $output->writeln('format must be http[s]://domain.name[:port][/path]'); continue; } @@ -571,7 +571,7 @@ private function checkFrontal(InputInterface $input, OutputInterface $output, st try { [$scheme, $cloudId, $path] = $this->parseAddress($frontal); } catch (Exception $e) { - $output->writeln('format must be http[s]://domain.name[:post][/path]'); + $output->writeln('format must be http[s]://domain.name[:port][/path]'); continue; }