From 93a01fed253c6ed0fd1d5c74381317c61d04b186 Mon Sep 17 00:00:00 2001 From: Strong Liu Date: Wed, 10 Mar 2010 22:20:03 +0000 Subject: [PATCH] HHH-5000 correct duplicate words in document git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18981 1b8cb986-b30d-0410-93ca-fae66ebed9b2 --- .../manual/src/main/docbook/en-US/content/architecture.xml | 2 +- .../manual/src/main/docbook/en-US/content/performance.xml | 2 +- .../manual/src/main/docbook/en-US/content/portability.xml | 2 +- .../manual/src/main/docbook/en-US/content/query_sql.xml | 2 +- .../manual/src/main/docbook/en-US/content/session_api.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/documentation/manual/src/main/docbook/en-US/content/architecture.xml b/documentation/manual/src/main/docbook/en-US/content/architecture.xml index aa8a6f7461..42ecea839e 100644 --- a/documentation/manual/src/main/docbook/en-US/content/architecture.xml +++ b/documentation/manual/src/main/docbook/en-US/content/architecture.xml @@ -362,7 +362,7 @@ The first two implementations provide a "one session - one database transaction" programming - model. This is also also known and used as session-per-request. The beginning + model. This is also known and used as session-per-request. The beginning and end of a Hibernate session is defined by the duration of a database transaction. If you use programmatic transaction demarcation in plain JSE without JTA, you are advised to use the Hibernate Transaction API to hide the underlying transaction system diff --git a/documentation/manual/src/main/docbook/en-US/content/performance.xml b/documentation/manual/src/main/docbook/en-US/content/performance.xml index d17c3ef6fe..221fd333c6 100644 --- a/documentation/manual/src/main/docbook/en-US/content/performance.xml +++ b/documentation/manual/src/main/docbook/en-US/content/performance.xml @@ -1156,7 +1156,7 @@ hibernate.cache.use_structured_entries true]]> If you configure your underlying cache implementation to use expiry or - timeouts is is very important that the cache timeout of the underlying + timeouts is very important that the cache timeout of the underlying cache region for the UpdateTimestampsCache be set to a higher value than the timeouts of any of the query caches. In fact, we recommend that the the UpdateTimestampsCache region not be configured for expiry at all. Note, diff --git a/documentation/manual/src/main/docbook/en-US/content/portability.xml b/documentation/manual/src/main/docbook/en-US/content/portability.xml index 5facd53499..550fd773bb 100644 --- a/documentation/manual/src/main/docbook/en-US/content/portability.xml +++ b/documentation/manual/src/main/docbook/en-US/content/portability.xml @@ -169,7 +169,7 @@ SQL functions can be referenced in many ways by users. However, not all databases support the same set of functions. Hibernate, provides a means of mapping a - logical function name to a a delegate which knows how to render + logical function name to a delegate which knows how to render that particular function, perhaps even using a totally different physical function call. diff --git a/documentation/manual/src/main/docbook/en-US/content/query_sql.xml b/documentation/manual/src/main/docbook/en-US/content/query_sql.xml index e27d912bd6..37c75c605e 100644 --- a/documentation/manual/src/main/docbook/en-US/content/query_sql.xml +++ b/documentation/manual/src/main/docbook/en-US/content/query_sql.xml @@ -363,7 +363,7 @@ List loggedCats = sess.createSQLQuery(sql) - All properties of the the collection + All properties of the collection {[aliasname].*} diff --git a/documentation/manual/src/main/docbook/en-US/content/session_api.xml b/documentation/manual/src/main/docbook/en-US/content/session_api.xml index 7e853df079..94beb8ed4e 100644 --- a/documentation/manual/src/main/docbook/en-US/content/session_api.xml +++ b/documentation/manual/src/main/docbook/en-US/content/session_api.xml @@ -105,7 +105,7 @@ Making objects persistent - Newly instantiated instances of a a persistent class are considered + Newly instantiated instances of a persistent class are considered transient by Hibernate. We can make a transient instance persistent by associating it with a session: