From 3dde0c102dd3ba745e36b2e2723110b5bfb20ec8 Mon Sep 17 00:00:00 2001 From: Mirek Jahoda Date: Mon, 23 Oct 2017 15:22:20 +0000 Subject: [PATCH] Update Java-Language.xml - title case --- en-US/Java-Language.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/en-US/Java-Language.xml b/en-US/Java-Language.xml index 45fa356..c6eda5b 100644 --- a/en-US/Java-Language.xml +++ b/en-US/Java-Language.xml @@ -2,7 +2,7 @@
- The core language + The Core Language Implementations of the Java programming language provide strong memory safety, even in the presence of data races in concurrent @@ -12,7 +12,7 @@
- Increasing robustness when reading arrays + Increasing Robustness when Reading Arrays External data formats often include arrays, and the data is stored as an integer indicating the number of array elements, @@ -40,7 +40,7 @@
- Resource management + Resource Management Unlike C++, Java does not offer destructors which can deallocate resources in a predictable fashion. All resource management has @@ -160,7 +160,7 @@
- Recovering from exceptions and errors + Recovering from Exceptions and Errors Java exceptions come in three kinds, all ultimately deriving from java.lang.Throwable: @@ -220,7 +220,7 @@
- The difficulty of catching errors + The Difficulty of Catching Errors Errors (that is, exceptions which do not (indirectly) derive from java.lang.Exception), have the