From 682c579436aebbc1ff7fa5454150aa9d25653849 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Sun, 15 Jan 2023 15:22:04 +0000 Subject: [PATCH] Docs: Typo correction in POP3 class `send_cmd()` inline docs. Props nitman43, manojkpatil, kebbet. Fixes #57449. See #56792. git-svn-id: https://develop.svn.wordpress.org/trunk@55073 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-pop3.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/class-pop3.php b/src/wp-includes/class-pop3.php index 767b743912..2fa60110e2 100644 --- a/src/wp-includes/class-pop3.php +++ b/src/wp-includes/class-pop3.php @@ -443,7 +443,7 @@ class POP3 { // Sends a user defined command string to the // POP server and returns the results. Useful for // non-compliant or custom POP servers. - // Do NOT includ the \r\n as part of your command + // Do NOT include the \r\n as part of your command // string - it will be appended automatically. // The return value is a standard fgets() call, which