From 9ddcb5f7fe2f83e58b3f94d088bdd479782c8418 Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 4 Mar 2025 08:30:24 -0500 Subject: [PATCH] chore: fix typos in `circles:check` error output Fixes #1808 Signed-off-by: Josh --- lib/Command/CirclesCheck.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }