Update Go.xml - title case

This commit is contained in:
Mirek Jahoda 2017-10-23 15:30:41 +00:00
parent 6882e1f2af
commit 6eb9344ea0

View file

@ -7,7 +7,7 @@
This chapter contains language-specific recommendations for Go.
</para>
<section id="chap-Defensive_Coding-Go-Memory_Safety">
<title>Memory safety</title>
<title>Memory Safety</title>
<para>
Go provides memory safety, but only if the program is not executed
in parallel (that is, <envar>GOMAXPROCS</envar> is not larger than
@ -31,7 +31,7 @@
</para>
</section>
<section id="chap-Defensive_Coding-Go-Error_Handling">
<title>Error handling</title>
<title>Error Handling</title>
<para>
Only a few common operations (such as pointer dereference, integer
division, array subscripting) trigger exceptions in Go, called
@ -88,7 +88,7 @@
</para>
</section>
<section id="chap-Defensive_Coding-Go-Marshaling">
<title>Marshaling and unmarshaling</title>
<title>Marshaling and Unmarshaling</title>
<para>
Several packages in the <literal>encoding</literal> hierarchy
provide support for serialization and deserialization. The usual