Skip to content

Commit c98d2e4

Browse files
tonysmmattstauffer
andauthored
Fix typo
Co-authored-by: Matt Stauffer <[email protected]>
1 parent 3bbe9de commit c98d2e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Shell/Environment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function isWindowsOs(): bool
2929
public function portIsAvailable(int $port): bool
3030
{
3131
// To check if the port is available, we'll attempt to open a socket connection to it.
32-
// Note that the logic here is flipped: successfully openning the socket connection
32+
// Note that the logic here is flipped: successfully opening the socket connection
3333
// means something is using it. If it fails to open, that port is likely unused.
3434
$socket = @fsockopen($this->localhost(), $port, $errorCode, $errorMessage, timeout: 5);
3535

0 commit comments

Comments
 (0)