Skip to content

Commit c85acfa

Browse files
authored
Merge pull request #8831 from obozdag/patch-4
docs: Small typos in database/metadata.rst
2 parents 8b0c99b + b4fe6d2 commit c85acfa

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

user_guide_src/source/database/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ patterns. The database functions offer clear, simple syntax.
1717
Query Helper Methods <helpers>
1818
Query Builder Class <query_builder>
1919
Transactions <transactions>
20-
Getting MetaData <metadata>
20+
Getting Metadata <metadata>
2121
Custom Function Calls <call_function>
2222
Database Events <events>
2323
Database Utilities <utilities>

user_guide_src/source/database/metadata.rst

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
#################
2-
Database Metadata
3-
#################
1+
################
2+
Getting Metadata
3+
################
44

55
.. contents::
66
:local:
77
:depth: 2
88

99
**************
10-
Table MetaData
10+
Table Metadata
1111
**************
1212

1313
These functions let you fetch table information.
@@ -39,7 +39,7 @@ running an operation on it. Returns a boolean true/false. Usage example:
3939
.. note:: Replace *table_name* with the name of the table you are looking for.
4040

4141
**************
42-
Field MetaData
42+
Field Metadata
4343
**************
4444

4545
List the Fields in a Table
@@ -71,9 +71,7 @@ performing an action. Returns a boolean true/false. Usage example:
7171

7272
.. literalinclude:: metadata/005.php
7373

74-
.. note:: Replace *field_name* with the name of the column you are looking
75-
for, and replace *table_name* with the name of the table you are
76-
looking for.
74+
.. note:: Replace *field_name* and *table_name* with the column name and the table name you are looking for.
7775

7876
Retrieve Field Metadata
7977
=======================
@@ -88,7 +86,7 @@ Returns an array of objects containing field information.
8886
Sometimes it's helpful to gather the field names or other metadata, like
8987
the column type, max length, etc.
9088

91-
.. note:: Not all databases provide meta-data.
89+
.. note:: Not all databases provide metadata.
9290

9391
Usage example:
9492

0 commit comments

Comments
 (0)