From 8597ca78541b49526da50ca5a2f2ca8bcdba9f8f Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Tue, 25 Mar 2008 18:19:59 +0000 Subject: doc typos and fixes --- user_guide/database/configuration.html | 2 +- user_guide/helpers/form_helper.html | 2 +- user_guide/libraries/benchmark.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'user_guide') 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
  • username - The username used to connect to the database.
  • password - The password used to connect to the database.
  • database - The name of the database you want to connect to.
  • -
  • dbdriver - The database type. ie: mysql, postgre, obdc, etc. Must be specified in lower case.
  • +
  • dbdriver - The database type. ie: mysql, postgre, odcc, etc. Must be specified in lower case.
  • dbprefix - An optional table prefix which will added to the table name when running Active Record queries. This permits multiple CodeIgniter installations to share one database.
  • pconnect - TRUE/FALSE (boolean) - Whether to use a persistent connection.
  • db_debug - TRUE/FALSE (boolean) - Whether database errors should be displayed.
  • 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();

    // Produces
    -<fieldset id="address_info"> +<fieldset>
    <legend>Address Information</legend>
    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');

    echo $this->benchmark->elapsed_time('code_start', 'code_end'); -

    Note: The words "code_start" and "code_end" are arbitrary. They are simply words used to set two markers. You can +

    Note: 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:

    $this->benchmark->mark('dog');
    -- cgit v1.2.3-24-g4f1b