Update CXX-Std.xml - title case
This commit is contained in:
parent
9b8d50f84f
commit
3dbf479271
1 changed files with 4 additions and 4 deletions
|
@ -2,19 +2,19 @@
|
|||
<!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-CXX-Std">
|
||||
<title>The C++ standard library</title>
|
||||
<title>The C++ Standard Library</title>
|
||||
<para>
|
||||
The C++ standard library includes most of its C counterpart
|
||||
by reference, see <xref linkend="sect-Defensive_Coding-C-Libc"/>.
|
||||
</para>
|
||||
<section id="sect-Defensive_Coding-CXX-Std-Functions">
|
||||
<title>Functions that are difficult to use</title>
|
||||
<title>Functions That Are Difficult to Use</title>
|
||||
<para>
|
||||
This section collects functions and function templates which are
|
||||
part of the standard library and are difficult to use.
|
||||
</para>
|
||||
<section id="sect-Defensive_Coding-CXX-Std-Functions-Unpaired_Iterators">
|
||||
<title>Unpaired iterators</title>
|
||||
<title>Unpaired Iterators</title>
|
||||
<para>
|
||||
Functions which use output operators or iterators which do not
|
||||
come in pairs (denoting ranges) cannot perform iterator range
|
||||
|
@ -63,7 +63,7 @@
|
|||
</section>
|
||||
</section>
|
||||
<section id="sect-Defensive_Coding-CXX-Std-String">
|
||||
<title>String handling with <literal>std::string</literal></title>
|
||||
<title>String Handling with <literal>std::string</literal></title>
|
||||
<para>
|
||||
The <literal>std::string</literal> class provides a convenient
|
||||
way to handle strings. Unlike C strings,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue