fix indenting

This commit is contained in:
Gavin 2022-12-27 17:33:51 +01:00 committed by Gavin King
parent 7f444e41bf
commit 713b1a82cf
1 changed files with 44 additions and 44 deletions

View File

@ -10,7 +10,7 @@
<p> <p>
Hibernate is a library for object/relation mapping (ORM). It provides: Hibernate is a library for object/relation mapping (ORM). It provides:
<ul> <ul>
<li> <li>
a <em>native API</em> centered around {@link org.hibernate.SessionFactory} and a <em>native API</em> centered around {@link org.hibernate.SessionFactory} and
{@link org.hibernate.Session}, {@link org.hibernate.Session},
@ -24,7 +24,7 @@
a set of <em>mapping annotations</em> which augment the O/R mapping annotations defined a set of <em>mapping annotations</em> which augment the O/R mapping annotations defined
by JPA, and which may be used with either API. by JPA, and which may be used with either API.
</li> </li>
</ul> </ul>
</p> </p>
<h3>Native API</h3> <h3>Native API</h3>
@ -32,13 +32,13 @@
<p> <p>
Along with {@link org.hibernate.SessionFactory} and {@link org.hibernate.Session}, applications Along with {@link org.hibernate.SessionFactory} and {@link org.hibernate.Session}, applications
using the native API will often make use of the following interfaces: using the native API will often make use of the following interfaces:
<ul> <ul>
<li>{@link org.hibernate.cfg.Configuration} to configure and bootstrap Hibernate,</li> <li>{@link org.hibernate.cfg.Configuration} to configure and bootstrap Hibernate,</li>
<li>{@link org.hibernate.StatelessSession} for processes involving many entity instances,</li> <li>{@link org.hibernate.StatelessSession} for processes involving many entity instances,</li>
<li>{@link org.hibernate.Cache} to manage the second-level cache,</li> <li>{@link org.hibernate.Cache} to manage the second-level cache,</li>
<li>{@link org.hibernate.Transaction} to control local transactions, and</li> <li>{@link org.hibernate.Transaction} to control local transactions, and</li>
<li>{@link org.hibernate.query.Query} to execute HQL queries.</li> <li>{@link org.hibernate.query.Query} to execute HQL queries.</li>
</ul> </ul>
</p> </p>
<h3>JPA</h3> <h3>JPA</h3>
@ -74,7 +74,7 @@
<p> <p>
The organization of code into packages is based on the following classification: The organization of code into packages is based on the following classification:
<ul> <ul>
<li> <li>
<strong>API packages</strong> include classes and interfaces which are used directly by <strong>API packages</strong> include classes and interfaces which are used directly by
a typical application. These packages never have <code>spi</code> nor <code>internal</code> a typical application. These packages never have <code>spi</code> nor <code>internal</code>
@ -95,7 +95,7 @@
The <code>hibernate-testing</code> module, and the namespace <code>org.hibernate.testing</code> The <code>hibernate-testing</code> module, and the namespace <code>org.hibernate.testing</code>
contain <strong>testing support</strong> used in the Hibernate test suite. contain <strong>testing support</strong> used in the Hibernate test suite.
</li> </li>
</ul> </ul>
</p> </p>
<h3>More information</h3> <h3>More information</h3>