summaryrefslogtreecommitdiffstats
path: root/user_guide/libraries/table.html
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-02-01 17:58:38 +0100
committerDerek Allard <derek.allard@ellislab.com>2008-02-01 17:58:38 +0100
commit78729d8be684369ed2b5e60e35052c2160c9ac39 (patch)
treecec3bdd922584dc63cf60b44c6bddc853e3fcaad /user_guide/libraries/table.html
parentb6cd79c40dd39cd6fb36b84cd5c23558854ea1ad (diff)
some minor grammar errors
Diffstat (limited to 'user_guide/libraries/table.html')
-rw-r--r--user_guide/libraries/table.html6
1 files changed, 3 insertions, 3 deletions
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);
</code>
-<p>Here is an example showing how you might create a table using discreet parameters:</p>
+<p>Here is an example showing how you might create a table using discrete parameters:</p>
<code>
$this->load->library('table');<br />
@@ -187,14 +187,14 @@ $this->table->set_template($tmpl);
<h2>$this->table->set_heading()</h2>
-<p>Permits you to set the table heading. You can submit an array or discreet params:</p>
+<p>Permits you to set the table heading. You can submit an array or discrete params:</p>
<code>$this->table->set_heading('Name', 'Color', 'Size');</code>
<code>$this->table->set_heading(array('Name', 'Color', 'Size'));</code>
<h2>$this->table->add_row()</h2>
-<p>Permits you to add a row to your table. You can submit an array or discreet params:</p>
+<p>Permits you to add a row to your table. You can submit an array or discrete params:</p>
<code>$this->table->add_row('Blue', 'Red', 'Green');</code>
<code>$this->table->add_row(array('Blue', 'Red', 'Green'));</code>