diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-02-06 02:38:51 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-02-06 02:38:51 +0100 |
commit | a85910c0361f8ecf14114e4a738be4b5b9979fb3 (patch) | |
tree | dc05fb3f1423134f787252951240f1dd916941e6 /user_guide | |
parent | 32cf7eb132ec688a3b0339f266efa3f064c58a60 (diff) |
Orcacle to Oracle
Diffstat (limited to 'user_guide')
-rw-r--r-- | user_guide/changelog.html | 1 | ||||
-rw-r--r-- | user_guide/database/active_record.html | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/user_guide/changelog.html b/user_guide/changelog.html index 4732a77b4..974c30dae 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -83,6 +83,7 @@ Change Log <li>Fixed a bug where DBForge was outputting invalid SQL in Postgres by adding brackets around the tables in FROM</li>
<li>Fixed a bug (#3396) where certain POST variables would cause a PHP warning.</li>
<li>Changed the behaviour of Active Record's update() to make the WHERE clause optional (#3395).</li>
+ <li>Fixed assorted user guide typos.</li>
</ul>
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html index 59ac9ae81..478400f69 100644 --- a/user_guide/database/active_record.html +++ b/user_guide/database/active_record.html @@ -456,7 +456,7 @@ The second parameter lets you set the direction of the result. Options are <kbd // Produces: ORDER BY title DESC, name ASC
</code></p>
<p class="important">Note: order_by() was formerly known as orderby(), which has been deprecated.</p>
-<p class="important">Note: random ordering is not currently supported in Orcacle or MSSQL drivers. These will default to 'ASC'.</p>
+<p class="important">Note: random ordering is not currently supported in Oracle or MSSQL drivers. These will default to 'ASC'.</p>
<h2>$this->db->limit();</h2>
<p>Lets you limit the number of rows you would like returned by the query:</p>
|