userguide note, corrections and omissions
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html
index d2c888c..533d52d 100644
--- a/user_guide/database/active_record.html
+++ b/user_guide/database/active_record.html
@@ -397,7 +397,7 @@
<h2> $this->db->distinct();<br />
</h2>
-<p>Adds the "DISTINCT" keyword to to a query</p>
+<p>Adds the "DISTINCT" keyword to a query</p>
<p><code>$this->db->distinct();<br />
$this->db->get('table');<br />
<br />
diff --git a/user_guide/database/connecting.html b/user_guide/database/connecting.html
index 6cdd109..79277e5 100644
--- a/user_guide/database/connecting.html
+++ b/user_guide/database/connecting.html
@@ -65,7 +65,7 @@
<h2>Automatically Connecting</h2>
<p>The "auto connect" feature will load and instantiate the database class with every page load.
-To enable "auto connecting", add the word <var>database</var> to the core array, as indicated in the following file:</p>
+To enable "auto connecting", add the word <var>database</var> to the library array, as indicated in the following file:</p>
<p><kbd>application/config/autoload.php</kbd></p>
diff --git a/user_guide/database/forge.html b/user_guide/database/forge.html
index cfbe005..4b0588c 100644
--- a/user_guide/database/forge.html
+++ b/user_guide/database/forge.html
@@ -126,7 +126,7 @@
<li>unsigned/true : to generate "UNSIGNED" in the field definition</li>
<li>default/value : to generate a default value in the field definition</li>
<li>null/true : to generate "NULL" in the field definition. Without this, the field will default to "NOT NULL"</li>
- <li>auto_increment/true : generates an auto_increment flag on the field. Note that the field type must </li>
+ <li>auto_increment/true : generates an auto_increment flag on the field. Note that the field type must integer</li>
</ul>
<p><code>$fields = array(<br />
'blog_id' => array(<br />
@@ -148,7 +148,7 @@
'type' => 'TEXT',<br />
'null' => TRUE,<br />
),<br />
- );<br />
+ )<br />
);</code></p>
<p>After the fields have been defined, they can be added using <dfn>$this->dbforge->add_field($fields);</dfn> followed by a call to the <dfn>create_table()</dfn> function.</p>
<h3>$this->dbforge->add_field()</h3>
@@ -187,12 +187,12 @@
);<br />
$this->dbforge->add_column('table_name', $fields);<br />
<br />
-// gives ALTER TABLE sites ADD preferences TEXT</code></p>
+// gives ALTER TABLE table_name ADD preferences TEXT</code></p>
<h2>$this->dbforge->drop_column()</h2>
<p>Used to remove a column from a table. </p>
<p><code>$this->dbforge->drop_column('table_name', 'column_to_drop');</code></p>
<h2>$this->dbforge->modify_column()</h2>
-<p>The usage of this function is identical to add_coumn(), except it alters an existing column rather than adding a new one. In order to use it you must add a "name" key into the field defining array.</p>
+<p>The usage of this function is identical to add_column(), except it alters an existing column rather than adding a new one. In order to use it you must add a "name" key into the field defining array.</p>
<p><code>$fields = array(<br />
'old_name' => array(<br />
'name' => 'new_name',<br />
diff --git a/user_guide/database/helpers.html b/user_guide/database/helpers.html
index 409660e..b3dab62 100644
--- a/user_guide/database/helpers.html
+++ b/user_guide/database/helpers.html
@@ -126,8 +126,8 @@
$str = $this->db->update_string('table_name', $data, $where);
</code>
-<p>The first parameter is the table name, the second is an associative array with the data to be inserted, and the third parameter is the "where" clause. The above example produces:</p>
-<code> UPDATE exp_weblog SET name = 'Rick', email = 'rick@your-site.com', url = 'www.your-site.com' WHERE author_id = 1 AND status = 'active'</code>
+<p>The first parameter is the table name, the second is an associative array with the data to be updated, and the third parameter is the "where" clause. The above example produces:</p>
+<code> UPDATE table_name SET name = 'Rick', email = 'rick@your-site.com', url = 'www.your-site.com' WHERE author_id = 1 AND status = 'active'</code>
<p class="important">Note: Values are automatically escaped, producing safer queries.</p>