MINOR: fixed typos in the comments

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@98201 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Andreas Piening 2010-02-04 04:54:17 +00:00 committed by Sam Minnee
parent f3a2cbf59f
commit 4fbc5572d6

View File

@ -942,7 +942,7 @@ class MySQLDatabase extends SS_Database {
}
/**
* Function to return an SQL datetime expression that can be used with SQLite3
* Function to return an SQL datetime expression that can be used with MySQL
* used for querying a datetime in a certain format
* @param string $date to be formated, can be either 'now', literal datetime like '1973-10-14 10:30:00' or field name, e.g. '"SiteTree"."Created"'
* @param string $format to be used, supported specifiers:
@ -973,7 +973,7 @@ class MySQLDatabase extends SS_Database {
}
/**
* Function to return an SQL datetime expression that can be used with SQLite3
* Function to return an SQL datetime expression that can be used with MySQL
* used for querying a datetime addition
* @param string $date, can be either 'now', literal datetime like '1973-10-14 10:30:00' or field name, e.g. '"SiteTree"."Created"'
* @param string $interval to be added, use the format [sign][integer] [qualifier], e.g. -1 Day, +15 minutes, +1 YEAR
@ -1001,7 +1001,7 @@ class MySQLDatabase extends SS_Database {
}
/**
* Function to return an SQL datetime expression that can be used with SQLite3
* Function to return an SQL datetime expression that can be used with MySQL
* used for querying a datetime substraction
* @param string $date1, can be either 'now', literal datetime like '1973-10-14 10:30:00' or field name, e.g. '"SiteTree"."Created"'
* @param string $date2 to be substracted of $date1, can be either 'now', literal datetime like '1973-10-14 10:30:00' or field name, e.g. '"SiteTree"."Created"'