Fixes a small typo (#226)

This commit is contained in:
Ivor 2024-06-04 11:40:31 +02:00 committed by GitHub
parent 0cfb938320
commit 661292df5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,6 +26,6 @@ public function toEmail(object $notifiable): MailMessage
return (new MailMessage) return (new MailMessage)
->subject(__('Server disconnected!')) ->subject(__('Server disconnected!'))
->line("We've disconnected from your server [".$this->server->name.'].') ->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');
} }
} }