From 656dce2ea5b7553189065d0840804db44e7cdee2 Mon Sep 17 00:00:00 2001 From: Andor Czafik Date: Sun, 1 Sep 2024 16:57:32 +0200 Subject: [PATCH] "outer loop" instead of "outerloop" --- src/STLVertex.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/STLVertex.php b/src/STLVertex.php index 966d1a9..27fc0ab 100644 --- a/src/STLVertex.php +++ b/src/STLVertex.php @@ -120,7 +120,7 @@ public function toArray() : array public function toString() : string { $coordinates = $this->getCoordinatesArray(); - $string = "outerloop\n"; + $string = "outer loop\n"; foreach ($coordinates as $coordinate) { $string .= " vertex " . implode(" ", $coordinate) . "\n"; } @@ -128,4 +128,4 @@ public function toString() : string return $string; } -} \ No newline at end of file +}