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/libraries/table.html | 6 +++--- user_guide/libraries/validation.html | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'user_guide/libraries') 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