diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-03-25 19:19:59 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-03-25 19:19:59 +0100 |
commit | 8597ca78541b49526da50ca5a2f2ca8bcdba9f8f (patch) | |
tree | 4716602e895ae693dcae5f57c9bc9d40971d8b95 | |
parent | 11213e4c0f1de094746e834ca6c8f547459703dd (diff) |
doc typos and fixes
-rw-r--r-- | user_guide/database/configuration.html | 2 | ||||
-rw-r--r-- | user_guide/helpers/form_helper.html | 2 | ||||
-rw-r--r-- | user_guide/libraries/benchmark.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/user_guide/database/configuration.html b/user_guide/database/configuration.html index 7908c2d62..a6da7e196 100644 --- a/user_guide/database/configuration.html +++ b/user_guide/database/configuration.html @@ -121,7 +121,7 @@ for the primary connection, but it too can be renamed to something more relevant <li><strong>username</strong> - The username used to connect to the database.</li>
<li><strong>password</strong> - The password used to connect to the database.</li>
<li><strong>database</strong> - The name of the database you want to connect to.</li>
-<li><strong>dbdriver</strong> - The database type. ie: mysql, postgre, obdc, etc. Must be specified in lower case.</li>
+<li><strong>dbdriver</strong> - The database type. ie: mysql, postgre, odcc, etc. Must be specified in lower case.</li>
<li><strong>dbprefix</strong> - An optional table prefix which will added to the table name when running <a href="active_record.html">Active Record</a> queries. This permits multiple CodeIgniter installations to share one database.</li>
<li><strong>pconnect</strong> - TRUE/FALSE (boolean) - Whether to use a persistent connection.</li>
<li><strong>db_debug</strong> - TRUE/FALSE (boolean) - Whether database errors should be displayed.</li>
diff --git a/user_guide/helpers/form_helper.html b/user_guide/helpers/form_helper.html index fa33e6a48..fa96424e1 100644 --- a/user_guide/helpers/form_helper.html +++ b/user_guide/helpers/form_helper.html @@ -249,7 +249,7 @@ echo form_fieldset_close(); <br />
<br />
// Produces<br />
-<fieldset id="address_info">
+<fieldset>
<br />
<legend>Address Information</legend>
<br />
diff --git a/user_guide/libraries/benchmark.html b/user_guide/libraries/benchmark.html index ea60294b6..4afa58bc3 100644 --- a/user_guide/libraries/benchmark.html +++ b/user_guide/libraries/benchmark.html @@ -101,7 +101,7 @@ $this->benchmark->mark('code_end');<br /> <br />
echo $this->benchmark->elapsed_time('code_start', 'code_end');</code>
-<p><strong>Note:</strong> The words "code_start" and "code_end" are arbitrary. They are simply words used to set two markers. You can
+<p class="important"><strong>Note:</strong> The words "code_start" and "code_end" are arbitrary. They are simply words used to set two markers. You can
use any words you want, and you can set multiple sets of markers. Consider this example:</p>
<code>$this->benchmark->mark('dog');<br />
|