Typo fixes from mark8barnes and AndrewFrazier. fixes #7174

git-svn-id: http://svn.automattic.com/wordpress/trunk@8187 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-06-24 18:52:52 +00:00
parent 2a9a3a255d
commit 42a058e986
2 changed files with 2 additions and 2 deletions

View File

@ -876,7 +876,7 @@ function deslash($content) {
function dbDelta($queries, $execute = true) {
global $wpdb;
// Seperate individual queries into an array
// Separate individual queries into an array
if( !is_array($queries) ) {
$queries = explode( ';', $queries );
if('' == $queries[count($queries) - 1]) array_pop($queries);

View File

@ -249,7 +249,7 @@ class SMTP
* finializing the mail transaction. $msg_data is the message
* that is to be send with the headers. Each header needs to be
* on a single line followed by a <CRLF> with the message headers
* and the message body being seperated by and additional <CRLF>.
* and the message body being separated by and additional <CRLF>.
*
* Implements rfc 821: DATA <CRLF>
*