Commit 3ba21503 authored by Guilherme Blanco's avatar Guilherme Blanco

Merge pull request #255 from deeky666/fix-typo-abstractplatform

fix typo in AbstractPlatform phpDocs
parents 99a13381 7f73ed5c
......@@ -1000,7 +1000,7 @@ abstract class AbstractPlatform
/**
* Get the sql snippet to append to any SELECT statement which locks rows in shared read lock.
*
* This defaults to the ASNI SQL "FOR UPDATE", which is an exclusive lock (Write). Some database
* This defaults to the ANSI SQL "FOR UPDATE", which is an exclusive lock (Write). Some database
* vendors allow to lighten this constraint up to be a real read lock.
*
* @return string
......@@ -1013,7 +1013,7 @@ abstract class AbstractPlatform
/**
* Get the SQL snippet to append to any SELECT statement which obtains an exclusive lock on the rows.
*
* The semantics of this lock mode should equal the SELECT .. FOR UPDATE of the ASNI SQL standard.
* The semantics of this lock mode should equal the SELECT .. FOR UPDATE of the ANSI SQL standard.
*
* @return string
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment