From 723455d1b709c262bdaa7163321138da2fd8d5b5 Mon Sep 17 00:00:00 2001 From: Marcus Bointon Date: Wed, 23 Jun 2021 12:45:42 +0200 Subject: [PATCH] Comment --- examples/smtp_low_memory.phps | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/smtp_low_memory.phps b/examples/smtp_low_memory.phps index 7b698ee6..73279bb8 100644 --- a/examples/smtp_low_memory.phps +++ b/examples/smtp_low_memory.phps @@ -11,7 +11,7 @@ require '../vendor/autoload.php'; /** * This class demonstrates sending an already-built RFC822 message via SMTP * by extending PHPMailer's SMTP class. - * It uses less memory that PHPMailer's usual approach because it keeps + * It uses less memory than PHPMailer's usual approach because it keeps * the message as a single string rather than splitting its lines into * an array, which can consume very large amounts of memory if you have * large attachments. The downside is that it's somewhat slower.