Skip to content

update books for next release #47076

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 30, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/doc/book
Submodule book updated 84 files
+22 −1 README.md
+1 −1 first-edition/src/casting-between-types.md
+7 −5 first-edition/src/ffi.md
+38 −2 second-edition/dictionary.txt
+891 −42 second-edition/nostarch/appendix.md
+1 −1 second-edition/nostarch/chapter04.md
+1 −1 second-edition/nostarch/chapter05.md
+1 −1 second-edition/nostarch/chapter06.md
+14 −11 second-edition/nostarch/chapter07.md
+10 −9 second-edition/nostarch/chapter08.md
+7 −5 second-edition/nostarch/chapter09.md
+478 −470 second-edition/nostarch/chapter11.md
+609 −591 second-edition/nostarch/chapter12.md
+336 −345 second-edition/nostarch/chapter13.md
+8 −8 second-edition/nostarch/chapter14.md
+1 −1 second-edition/nostarch/chapter15.md
+2 −2 second-edition/nostarch/chapter16.md
+12 −12 second-edition/nostarch/chapter17.md
+15 −15 second-edition/nostarch/chapter19.md
+34 −34 second-edition/nostarch/chapter20.md
+ second-edition/nostarch/odt/chapter11.docx
+ second-edition/nostarch/odt/chapter12.docx
+ second-edition/nostarch/odt/chapter13.docx
+10 −10 second-edition/src/SUMMARY.md
+2 −2 second-edition/src/appendix-01-keywords.md
+154 −195 second-edition/src/appendix-02-operators.md
+212 −0 second-edition/src/appendix-03-derivable-traits.md
+484 −0 second-edition/src/appendix-04-macros.md
+2 −0 second-edition/src/appendix-05-translation.md
+0 −0 second-edition/src/appendix-06-newest-features.md
+2 −2 second-edition/src/ch01-01-installation.md
+4 −0 second-edition/src/ch01-02-hello-world.md
+4 −4 second-edition/src/ch03-02-data-types.md
+2 −2 second-edition/src/ch03-05-control-flow.md
+1 −1 second-edition/src/ch04-01-what-is-ownership.md
+1 −1 second-edition/src/ch05-03-method-syntax.md
+2 −2 second-edition/src/ch06-02-match.md
+6 −4 second-edition/src/ch07-01-mod-and-the-filesystem.md
+3 −3 second-edition/src/ch07-02-controlling-visibility-with-pub.md
+4 −4 second-edition/src/ch07-03-importing-names-with-use.md
+2 −2 second-edition/src/ch08-01-vectors.md
+1 −1 second-edition/src/ch09-00-error-handling.md
+50 −48 second-edition/src/ch09-01-unrecoverable-errors-with-panic.md
+19 −22 second-edition/src/ch09-02-recoverable-errors-with-result.md
+2 −2 second-edition/src/ch09-03-to-panic-or-not-to-panic.md
+1 −3 second-edition/src/ch10-02-traits.md
+22 −22 second-edition/src/ch11-00-testing.md
+247 −234 second-edition/src/ch11-01-writing-tests.md
+93 −93 second-edition/src/ch11-02-running-tests.md
+122 −120 second-edition/src/ch11-03-test-organization.md
+21 −24 second-edition/src/ch12-00-an-io-project.md
+70 −68 second-edition/src/ch12-01-accepting-command-line-arguments.md
+38 −36 second-edition/src/ch12-02-reading-a-file.md
+231 −229 second-edition/src/ch12-03-improving-error-handling-and-modularity.md
+125 −119 second-edition/src/ch12-04-testing-the-librarys-functionality.md
+84 −76 second-edition/src/ch12-05-working-with-environment-variables.md
+45 −43 second-edition/src/ch12-06-writing-to-stderr-instead-of-stdout.md
+16 −16 second-edition/src/ch13-00-functional-features.md
+149 −151 second-edition/src/ch13-01-closures.md
+65 −67 second-edition/src/ch13-02-iterators.md
+47 −47 second-edition/src/ch13-03-improving-our-io-project.md
+37 −40 second-edition/src/ch13-04-performance.md
+6 −6 second-edition/src/ch14-02-publishing-to-crates-io.md
+1 −1 second-edition/src/ch14-03-cargo-workspaces.md
+1 −1 second-edition/src/ch14-04-installing-binaries.md
+2 −2 second-edition/src/ch15-01-box.md
+3 −3 second-edition/src/ch15-02-deref.md
+8 −8 second-edition/src/ch15-03-drop.md
+10 −10 second-edition/src/ch15-04-rc.md
+12 −12 second-edition/src/ch15-05-interior-mutability.md
+16 −16 second-edition/src/ch15-06-reference-cycles.md
+16 −5 second-edition/src/ch16-01-threads.md
+4 −4 second-edition/src/ch16-02-message-passing.md
+13 −13 second-edition/src/ch17-03-oo-design-patterns.md
+1 −1 second-edition/src/ch18-02-refutability.md
+4 −4 second-edition/src/ch19-03-advanced-traits.md
+13 −13 second-edition/src/ch19-04-advanced-types.md
+6 −6 second-edition/src/ch20-01-single-threaded.md
+3 −3 second-edition/src/ch20-02-slow-requests.md
+1 −1 second-edition/src/ch20-03-designing-the-interface.md
+5 −5 second-edition/src/ch20-04-storing-threads.md
+15 −15 second-edition/src/ch20-05-sending-requests-via-channels.md
+5 −5 second-edition/src/ch20-06-graceful-shutdown-and-cleanup.md
+21 −2 second-edition/tools/docx-to-md.xsl
2 changes: 1 addition & 1 deletion src/doc/nomicon
2 changes: 1 addition & 1 deletion src/doc/reference