From 661292df5ea7980c28e96dd620e1542fa878dace Mon Sep 17 00:00:00 2001 From: Ivor Date: Tue, 4 Jun 2024 11:40:31 +0200 Subject: [PATCH] Fixes a small typo (#226) --- app/Notifications/ServerDisconnected.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Notifications/ServerDisconnected.php b/app/Notifications/ServerDisconnected.php index 029c9b7..2acf337 100644 --- a/app/Notifications/ServerDisconnected.php +++ b/app/Notifications/ServerDisconnected.php @@ -26,6 +26,6 @@ public function toEmail(object $notifiable): MailMessage return (new MailMessage) ->subject(__('Server disconnected!')) ->line("We've disconnected from your server [".$this->server->name.'].') - ->line('Please check your sever is online and make sure that has our public keys in it'); + ->line('Please check your server is online and make sure that has our public keys in it'); } }