Skip to content

Commit

Permalink
Closes #77
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Lospinoso committed Jan 1, 2020
1 parent 8338847 commit fc1ff45
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/index.html
Expand Up @@ -289,7 +289,9 @@ <h3 class="pb-3 mb-4 font-italic border-bottom" id="typos">Typos</h3>
<li><a href="https://github.com/JLospinoso/ccc/issues/19">p. 80</a> "Next, you initialize another int called new_value to 200 and <b>assign it to original</b>(3)."</li>
<li><a href="https://github.com/JLospinoso/ccc/issues/75">p. 100</a> "Handlers will catch a given type and any of its parents’ types." should read "...childrens' types."</li>
<li><a href="https://github.com/JLospinoso/ccc/issues/32">p. 105</a> The Note should refer to Item 14, not Item 16 of Effective Modern C++ by Scott Meyers.</li>
<li><a href="https://github.com/JLospinoso/ccc/issues/77">p. 110</a> In listing 4-16, (3) and (5) should read string.print("A") and string.print("B").</li>
<li><a href="https://github.com/JLospinoso/ccc/issues/76">p. 110</a> "(It’s your responsibility as a user of string to check for this condition.)" should read "(It’s your responsibility as a user of SimpleString to check for this condition.)"</li>
<li><a href="https://github.com/JLospinoso/ccc/issues/77">p. 111</a> In listing 4-18, "Constructed: " and "About to destroy: " should read "Constructed" and "About to destroy".</li>
<li><a href="https://github.com/JLospinoso/ccc/issues/52">p. 120</a> In listing 4-30, "strcpy_s(buffer, max_size, other.buffer);" should read "std::strncpy(buffer, other.buffer, max_size);"</li>
<li><a href="https://github.com/JLospinoso/ccc/issues/18">p. 128</a> The copy constructor in Listing 4-38 should use braced initializers for its member initializer, as in Listing 4-35.</li>
<li>
Expand Down

0 comments on commit fc1ff45

Please sign in to comment.