Skip to content

Commit

Permalink
Rollup merge of #61734 - mati865:books, r=alexcrichton
Browse files Browse the repository at this point in the history
Migrate rust-by-example to MdBook2
  • Loading branch information
Centril committed Jun 12, 2019
2 parents adea131 + 7d32113 commit 4748b5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bootstrap/doc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ book!(
EmbeddedBook, "src/doc/embedded-book", "embedded-book", RustbookVersion::MdBook2;
Nomicon, "src/doc/nomicon", "nomicon", RustbookVersion::MdBook2;
Reference, "src/doc/reference", "reference", RustbookVersion::MdBook1;
RustByExample, "src/doc/rust-by-example", "rust-by-example", RustbookVersion::MdBook1;
RustByExample, "src/doc/rust-by-example", "rust-by-example", RustbookVersion::MdBook2;
RustcBook, "src/doc/rustc", "rustc", RustbookVersion::MdBook1;
RustdocBook, "src/doc/rustdoc", "rustdoc", RustbookVersion::MdBook2;
);
Expand Down
2 changes: 1 addition & 1 deletion src/doc/rust-by-example
Submodule rust-by-example updated 77 files
+2 −2 src/attribute.md
+1 −1 src/attribute/cfg.md
+1 −1 src/compatibility.md
+1 −1 src/conversion.md
+1 −1 src/conversion/string.md
+1 −1 src/crates/lib.md
+2 −2 src/custom_types/constants.md
+3 −3 src/custom_types/enum.md
+1 −1 src/custom_types/enum/c_like.md
+2 −2 src/custom_types/enum/enum_use.md
+2 −2 src/custom_types/enum/testcase_linked_list.md
+2 −2 src/custom_types/structs.md
+1 −1 src/error/multiple_error_types/option_result.md
+1 −1 src/error/multiple_error_types/wrap_error.md
+1 −1 src/error/option_unwrap/and_then.md
+1 −1 src/error/option_unwrap/map.md
+1 −1 src/error/result.md
+1 −1 src/error/result/enter_question_mark.md
+1 −1 src/error/result/result_alias.md
+1 −1 src/flow_control/for.md
+2 −2 src/flow_control/if_let.md
+1 −1 src/flow_control/match/binding.md
+4 −4 src/flow_control/match/destructuring.md
+2 −2 src/flow_control/match/destructuring/destructure_enum.md
+1 −1 src/flow_control/match/destructuring/destructure_structures.md
+1 −1 src/flow_control/match/destructuring/destructure_tuple.md
+1 −1 src/flow_control/match/guard.md
+2 −2 src/flow_control/while_let.md
+1 −1 src/fn/closures/anonymity.md
+1 −1 src/fn/closures/capture.md
+2 −2 src/fn/closures/output_parameters.md
+1 −1 src/generics.md
+2 −2 src/generics/assoc_items/the_problem.md
+5 −5 src/generics/bounds.md
+1 −1 src/generics/bounds/testcase_empty.md
+2 −2 src/generics/gen_fn.md
+2 −2 src/generics/gen_trait.md
+3 −3 src/generics/impl.md
+2 −2 src/generics/multi_bounds.md
+1 −1 src/generics/new_types.md
+3 −3 src/generics/phantom.md
+8 −8 src/generics/phantom/testcase_units.md
+2 −2 src/generics/where.md
+1 −1 src/hello.md
+1 −1 src/hello/comment.md
+5 −5 src/hello/print.md
+2 −2 src/hello/print/print_debug.md
+5 −5 src/hello/print/print_display.md
+6 −6 src/hello/print/print_display/testcase_list.md
+24 −24 src/index.md
+3 −3 src/macros/syntax.md
+1 −1 src/mod/split.md
+2 −2 src/mod/struct_visibility.md
+3 −3 src/primitives.md
+1 −1 src/primitives/tuples.md
+1 −1 src/scope/borrow/mut.md
+4 −4 src/scope/lifetime/explicit.md
+2 −2 src/scope/lifetime/fn.md
+3 −3 src/scope/lifetime/lifetime_bounds.md
+1 −1 src/scope/lifetime/methods.md
+1 −1 src/scope/lifetime/static_lifetime.md
+1 −1 src/scope/lifetime/struct.md
+1 −1 src/scope/lifetime/trait.md
+1 −1 src/scope/move.md
+1 −1 src/scope/raii.md
+1 −1 src/std.md
+1 −1 src/std_misc.md
+1 −1 src/std_misc/fs.md
+6 −6 src/std_misc/threads/testcase_mapreduce.md
+4 −4 src/testing.md
+2 −2 src/testing/integration_testing.md
+4 −4 src/testing/unit_testing.md
+1 −1 src/trait/derive.md
+4 −4 src/types.md
+1 −1 src/types/alias.md
+3 −3 src/types/literals.md
+1 −1 src/unsafe.md

0 comments on commit 4748b5b

Please sign in to comment.