summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/manual.xhtml10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/manual.xhtml b/doc/manual.xhtml
index 37523854..ff2255e 100644
--- a/doc/manual.xhtml
+++ b/doc/manual.xhtml
@@ -419,7 +419,7 @@
<p>The ODB Query Language is an object-oriented database query
language that can be used to search for objects matching
- a certain criteria. It is modeled after and is integrated into
+ certain criteria. It is modeled after and is integrated into
C++ allowing you to write expressive and safe queries that look
and feel like ordinary C++.</p>
@@ -528,7 +528,7 @@
support code, as well as compile and run our application. We
will also learn how to make objects persistent, load, update
and delete persistent objects, as well as query the database
- for persistent objects that match a certain criteria.</p>
+ for persistent objects that match certain criteria.</p>
<p>The code presented in this chapter is based on the
<code>hello</code> example which can be found in the
@@ -994,7 +994,7 @@ mysql> quit
</pre>
<p>In the next section we will examine how to query the database
- for persistent objects matching a certain criteria.</p>
+ for persistent objects matching certain criteria.</p>
<h2><a name="2.4">2.4 Querying Database for Objects</a></h2>
@@ -1867,7 +1867,7 @@ t.commit ();
returns <code>false</code>.</p>
<p>If we don't know an object's identifier, then we can use queries to
- find the object (or objects) matching some other criteria (@@ ref
+ find the object (or objects) matching some criteria (@@ ref
query). Note, however, that loading an object's state using its
identifier can be significantly faster that doing a query.</p>
@@ -2091,7 +2091,7 @@ namespace odb
<p>If you don't know the identifiers of the objects that you are looking
for, you can use queries to search the database for objects matching
- a certain criteria. ODB provides flexible and powerful query support
+ certain criteria. ODB provides flexible and powerful query support
that offers two distinct levels of abstraction from the database
system query language such as SQL.</p>