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>
Hibernate is a library for object/relation mapping (ORM). It provides:
<ul>
<ul>
<li>
a <em>native API</em> centered around {@link org.hibernate.SessionFactory} and
{@link org.hibernate.Session},
@ -24,7 +24,7 @@
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.
</li>
</ul>
</ul>
</p>
<h3>Native API</h3>
@ -32,13 +32,13 @@
<p>
Along with {@link org.hibernate.SessionFactory} and {@link org.hibernate.Session}, applications
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.StatelessSession} for processes involving many entity instances,</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.query.Query} to execute HQL queries.</li>
</ul>
</ul>
</p>
<h3>JPA</h3>
@ -74,7 +74,7 @@
<p>
The organization of code into packages is based on the following classification:
<ul>
<ul>
<li>
<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>
@ -95,7 +95,7 @@
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.
</li>
</ul>
</ul>
</p>
<h3>More information</h3>