From 78729d8be684369ed2b5e60e35052c2160c9ac39 Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Fri, 1 Feb 2008 16:58:38 +0000 Subject: some minor grammar errors --- user_guide/changelog.html | 2 +- user_guide/libraries/table.html | 6 +++--- user_guide/libraries/validation.html | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/user_guide/changelog.html b/user_guide/changelog.html index d01e564ce..83e904681 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -433,7 +433,7 @@ Change Log
  • Deprecated the hash() function due to a naming conflict with a native PHP function with the same name. Please use dohash() instead.
  • Fixed an bug that was preventing the input class from unsetting GET variables.
  • Fixed a router bug that was making it too greedy when matching end segments.
  • -
  • Fixed a bug that was preventing multiple discreet database calls.
  • +
  • Fixed a bug that was preventing multiple discrete database calls.
  • Fixed a bug in which loading a language file was producing a "file contains no data" message.
  • Fixed a session bug caused by the XSS Filtering feature inadvertently changing the case of certain words.
  • Fixed some missing prefixes when using the database prefix feature.
  • diff --git a/user_guide/libraries/table.html b/user_guide/libraries/table.html index 8eb686f51..3e0f71668 100644 --- a/user_guide/libraries/table.html +++ b/user_guide/libraries/table.html @@ -100,7 +100,7 @@ echo $this->table->generate($query); -

    Here is an example showing how you might create a table using discreet parameters:

    +

    Here is an example showing how you might create a table using discrete parameters:

    $this->load->library('table');
    @@ -187,14 +187,14 @@ $this->table->set_template($tmpl);

    $this->table->set_heading()

    -

    Permits you to set the table heading. You can submit an array or discreet params:

    +

    Permits you to set the table heading. You can submit an array or discrete params:

    $this->table->set_heading('Name', 'Color', 'Size'); $this->table->set_heading(array('Name', 'Color', 'Size'));

    $this->table->add_row()

    -

    Permits you to add a row to your table. You can submit an array or discreet params:

    +

    Permits you to add a row to your table. You can submit an array or discrete params:

    $this->table->add_row('Blue', 'Red', 'Green'); $this->table->add_row(array('Blue', 'Red', 'Green')); diff --git a/user_guide/libraries/validation.html b/user_guide/libraries/validation.html index facd1a583..afb960ada 100644 --- a/user_guide/libraries/validation.html +++ b/user_guide/libraries/validation.html @@ -610,7 +610,7 @@ For example, your "username" error will be available at:
    $this->valida -

    Note: These rules can also be called as discreet functions. For example:

    +

    Note: These rules can also be called as discrete functions. For example:

    $this->validation->required($string); -- cgit v1.2.3-24-g4f1b