Skip to content

Commit

Permalink
update books for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
steveklabnik committed Mar 24, 2018
1 parent c08480f commit 36322d0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/doc/book
Submodule book updated 98 files
+1 −1 CONTRIBUTING.md
+3 −3 first-edition/src/ffi.md
+2 −2 first-edition/src/procedural-macros.md
+1 −1 first-edition/src/the-stack-and-the-heap.md
+2 −2 index.md
+7 −1 second-edition/dictionary.txt
+209 −277 second-edition/nostarch/chapter02.md
+192 −190 second-edition/nostarch/chapter03.md
+190 −188 second-edition/nostarch/chapter04.md
+281 −196 second-edition/nostarch/chapter05.md
+84 −90 second-edition/nostarch/chapter06.md
+73 −102 second-edition/nostarch/chapter07.md
+173 −177 second-edition/nostarch/chapter08.md
+152 −157 second-edition/nostarch/chapter09.md
+946 −944 second-edition/nostarch/chapter10.md
+92 −89 second-edition/nostarch/chapter11.md
+143 −145 second-edition/nostarch/chapter12.md
+182 −179 second-edition/nostarch/chapter13.md
+42 −42 second-edition/nostarch/chapter14.md
+9 −12 second-edition/nostarch/chapter16.md
+445 −523 second-edition/nostarch/chapter17.md
+450 −611 second-edition/nostarch/chapter18.md
+41 −0 second-edition/nostarch/foreword.md
+ second-edition/nostarch/odt/chapter10.docx
+ second-edition/nostarch/odt/chapter17.docx
+ second-edition/nostarch/odt/chapter18.docx
+2 −1 second-edition/src/SUMMARY.md
+3 −3 second-edition/src/appendix-02-operators.md
+5 −2 second-edition/src/appendix-05-translation.md
+69 −0 second-edition/src/appendix-06-newest-features.md
+198 −264 second-edition/src/ch02-00-guessing-game-tutorial.md
+4 −3 second-edition/src/ch03-00-common-programming-concepts.md
+57 −55 second-edition/src/ch03-01-variables-and-mutability.md
+61 −64 second-edition/src/ch03-02-data-types.md
+28 −27 second-edition/src/ch03-03-how-functions-work.md
+40 −35 second-edition/src/ch03-05-control-flow.md
+3 −3 second-edition/src/ch04-00-understanding-ownership.md
+106 −106 second-edition/src/ch04-01-what-is-ownership.md
+30 −30 second-edition/src/ch04-02-references-and-borrowing.md
+48 −48 second-edition/src/ch04-03-slices.md
+9 −9 second-edition/src/ch05-00-structs.md
+37 −38 second-edition/src/ch05-01-defining-structs.md
+38 −34 second-edition/src/ch05-02-example-structs.md
+28 −28 second-edition/src/ch05-03-method-syntax.md
+1 −1 second-edition/src/ch06-00-enums.md
+46 −47 second-edition/src/ch06-01-defining-an-enum.md
+29 −33 second-edition/src/ch06-02-match.md
+10 −10 second-edition/src/ch06-03-if-let.md
+3 −3 second-edition/src/ch07-00-modules.md
+40 −42 second-edition/src/ch07-01-mod-and-the-filesystem.md
+22 −48 second-edition/src/ch07-02-controlling-visibility-with-pub.md
+11 −10 second-edition/src/ch07-03-importing-names-with-use.md
+3 −3 second-edition/src/ch08-00-common-collections.md
+58 −61 second-edition/src/ch08-01-vectors.md
+68 −69 second-edition/src/ch08-02-strings.md
+43 −43 second-edition/src/ch08-03-hash-maps.md
+12 −12 second-edition/src/ch09-00-error-handling.md
+25 −26 second-edition/src/ch09-01-unrecoverable-errors-with-panic.md
+59 −61 second-edition/src/ch09-02-recoverable-errors-with-result.md
+55 −58 second-edition/src/ch09-03-to-panic-or-not-to-panic.md
+72 −85 second-edition/src/ch10-00-generics.md
+167 −181 second-edition/src/ch10-01-syntax.md
+249 −277 second-edition/src/ch10-02-traits.md
+377 −405 second-edition/src/ch10-03-lifetime-syntax.md
+18 −17 second-edition/src/ch11-00-testing.md
+52 −35 second-edition/src/ch11-01-writing-tests.md
+11 −11 second-edition/src/ch11-02-running-tests.md
+24 −25 second-edition/src/ch11-03-test-organization.md
+5 −5 second-edition/src/ch12-00-an-io-project.md
+20 −21 second-edition/src/ch12-01-accepting-command-line-arguments.md
+7 −7 second-edition/src/ch12-02-reading-a-file.md
+53 −54 second-edition/src/ch12-03-improving-error-handling-and-modularity.md
+13 −13 second-edition/src/ch12-04-testing-the-librarys-functionality.md
+33 −32 second-edition/src/ch12-05-working-with-environment-variables.md
+13 −14 second-edition/src/ch12-06-writing-to-stderr-instead-of-stdout.md
+7 −6 second-edition/src/ch13-00-functional-features.md
+78 −73 second-edition/src/ch13-01-closures.md
+65 −65 second-edition/src/ch13-02-iterators.md
+15 −16 second-edition/src/ch13-03-improving-our-io-project.md
+18 −19 second-edition/src/ch13-04-performance.md
+4 −4 second-edition/src/ch14-01-release-profiles.md
+4 −4 second-edition/src/ch14-02-publishing-to-crates-io.md
+34 −33 second-edition/src/ch14-03-cargo-workspaces.md
+2 −2 second-edition/src/ch14-04-installing-binaries.md
+3 −3 second-edition/src/ch15-03-drop.md
+11 −8 second-edition/src/ch15-05-interior-mutability.md
+1 −1 second-edition/src/ch15-06-reference-cycles.md
+4 −6 second-edition/src/ch16-03-shared-state.md
+4 −5 second-edition/src/ch16-04-extensible-concurrency-sync-and-send.md
+8 −6 second-edition/src/ch17-00-oop.md
+74 −92 second-edition/src/ch17-01-what-is-oo.md
+165 −205 second-edition/src/ch17-02-trait-objects.md
+199 −221 second-edition/src/ch17-03-oo-design-patterns.md
+17 −23 second-edition/src/ch18-00-patterns.md
+99 −126 second-edition/src/ch18-01-all-the-places-for-patterns.md
+45 −50 second-edition/src/ch18-02-refutability.md
+276 −409 second-edition/src/ch18-03-pattern-syntax.md
+41 −0 second-edition/src/foreword.md
2 changes: 1 addition & 1 deletion src/doc/nomicon
2 changes: 1 addition & 1 deletion src/doc/reference
2 changes: 1 addition & 1 deletion src/doc/rust-by-example

0 comments on commit 36322d0

Please sign in to comment.