This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openjpa.git


The following commit(s) were added to refs/heads/master by this push:
     new c458c8eb4 [OPENJPA-2930] Fixing XML content
c458c8eb4 is described below

commit c458c8eb44902d25a9b4f95502080955fcb9d6d9
Author: Francesco Chicchiriccò <ilgro...@apache.org>
AuthorDate: Mon Mar 24 12:30:23 2025 +0100

    [OPENJPA-2930] Fixing XML content
---
 openjpa-project/src/doc/manual/jpa_overview_meta.xml  | 2 +-
 openjpa-project/src/doc/manual/jpa_overview_query.xml | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/openjpa-project/src/doc/manual/jpa_overview_meta.xml 
b/openjpa-project/src/doc/manual/jpa_overview_meta.xml
index f6d6d0d9d..bae2b708e 100644
--- a/openjpa-project/src/doc/manual/jpa_overview_meta.xml
+++ b/openjpa-project/src/doc/manual/jpa_overview_meta.xml
@@ -912,7 +912,7 @@ field value.
                             <para>
 <literal>GenerationType.UUID</literal>: Assign the field a type 4 UUID
 generated value. In this case, the field must be either 
<classname>String</classname>
- or <classname>UUID<classname>.
+ or <classname>UUID</classname>.
                             </para>
                         </listitem>
                     </itemizedlist>
diff --git a/openjpa-project/src/doc/manual/jpa_overview_query.xml 
b/openjpa-project/src/doc/manual/jpa_overview_query.xml
index edfffdc39..bd60abf6f 100644
--- a/openjpa-project/src/doc/manual/jpa_overview_query.xml
+++ b/openjpa-project/src/doc/manual/jpa_overview_query.xml
@@ -619,7 +619,7 @@ SELECT x FROM Magazine x WHERE FLOOR(x.price) &gt;= 10
                         </primary>
                     </indexterm>
 
-<literal>LN(number)</literal>: Returns the natural logarithm (base 
<litera>e</literal>) of a value.
+<literal>LN(number)</literal>: Returns the natural logarithm (base 
<literal>e</literal>) of a value.
                     </para>
 <programlisting>
 SELECT x FROM Magazine x WHERE LN(x.price) &gt;= 10
@@ -788,7 +788,7 @@ SELECT w.name FROM Course c JOIN c.studentWaitlist w WHERE 
c.name = ‘Calculus
 (year, quarter, month, week, day, hour, minute or second) from a datetime.
                     </para>
 <programlisting>
-SELECT c FROM Customer AS c WHERE EXTRACT(YEAR FROM c.birthDate) < 
(EXTRACT(YEAR FROM CURRENT_DATE) - 13)
+SELECT c FROM Customer AS c WHERE EXTRACT(YEAR FROM c.birthDate) &lte; 
(EXTRACT(YEAR FROM CURRENT_DATE) - 13)
 </programlisting>
                 </listitem>
                 <listitem>
@@ -802,7 +802,7 @@ SELECT c FROM Customer AS c WHERE EXTRACT(YEAR FROM 
c.birthDate) < (EXTRACT(YEAR
 (date or time) from a datetime.
                     </para>
 <programlisting>
-SELECT c FROM Customer AS c WHERE EXTRACT(DATE FROM c.createdTimestamp) < { d 
'1969-07-20' }
+SELECT c FROM Customer AS c WHERE EXTRACT(DATE FROM c.createdTimestamp) &lte; 
{ d '1969-07-20' }
 </programlisting>
                 </listitem>
                 </itemizedlist>
@@ -3636,7 +3636,7 @@ The <literal>ROUND</literal> function accepts a numeric 
argument and an integer
 returns a number of the same type as the first argument.
                     </para>
                     <para>
-The <literal>POWER<literal> function accepts two numeric arguments and returns 
a double.
+The <literal>POWER</literal> function accepts two numeric arguments and 
returns a double.
                     </para>
                     <para>
 Numeric arguments to these functions may correspond to the numeric Java object 
types as well

Reply via email to