Update Java-Language.xml - title case

This commit is contained in:
Mirek Jahoda 2017-10-23 15:22:20 +00:00
parent 07064c183f
commit 3dde0c102d

View file

@ -2,7 +2,7 @@
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ <!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]> ]>
<section id="sect-Defensive_Coding-Java-Language"> <section id="sect-Defensive_Coding-Java-Language">
<title>The core language</title> <title>The Core Language</title>
<para> <para>
Implementations of the Java programming language provide strong Implementations of the Java programming language provide strong
memory safety, even in the presence of data races in concurrent memory safety, even in the presence of data races in concurrent
@ -12,7 +12,7 @@
</para> </para>
<section id="sect-Defensive_Coding-Java-Language-ReadArray"> <section id="sect-Defensive_Coding-Java-Language-ReadArray">
<title>Increasing robustness when reading arrays</title> <title>Increasing Robustness when Reading Arrays</title>
<para> <para>
External data formats often include arrays, and the data is External data formats often include arrays, and the data is
stored as an integer indicating the number of array elements, stored as an integer indicating the number of array elements,
@ -40,7 +40,7 @@
</section> </section>
<section id="sect-Defensive_Coding-Java-Language-Resources"> <section id="sect-Defensive_Coding-Java-Language-Resources">
<title>Resource management</title> <title>Resource Management</title>
<para> <para>
Unlike C++, Java does not offer destructors which can deallocate Unlike C++, Java does not offer destructors which can deallocate
resources in a predictable fashion. All resource management has resources in a predictable fashion. All resource management has
@ -160,7 +160,7 @@
</section> </section>
<section id="sect-Defensive_Coding-Java-Language-Exceptions"> <section id="sect-Defensive_Coding-Java-Language-Exceptions">
<title>Recovering from exceptions and errors</title> <title>Recovering from Exceptions and Errors</title>
<para> <para>
Java exceptions come in three kinds, all ultimately deriving Java exceptions come in three kinds, all ultimately deriving
from <literal>java.lang.Throwable</literal>: from <literal>java.lang.Throwable</literal>:
@ -220,7 +220,7 @@
</para> </para>
<section id="sect-Defensive_Coding-Java-Language-Exceptions-Errors"> <section id="sect-Defensive_Coding-Java-Language-Exceptions-Errors">
<title>The difficulty of catching errors</title> <title>The Difficulty of Catching Errors</title>
<para> <para>
Errors (that is, exceptions which do not (indirectly) derive Errors (that is, exceptions which do not (indirectly) derive
from <literal>java.lang.Exception</literal>), have the from <literal>java.lang.Exception</literal>), have the