Skip to content

Commit abf5592

Browse files
committed
Auto merge of #40338 - GuillaumeGomez:pulldown-switch, r=frewsxcv,steveklabnik
Replace hoedown with pull in rustdoc cc @rust-lang/docs
2 parents 4465f22 + a7c6d3e commit abf5592

File tree

12 files changed

+555
-522
lines changed

12 files changed

+555
-522
lines changed

.gitmodules

-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
[submodule "src/compiler-rt"]
66
path = src/compiler-rt
77
url = https://github.com/rust-lang/compiler-rt.git
8-
[submodule "src/rt/hoedown"]
9-
path = src/rt/hoedown
10-
url = https://github.com/rust-lang/hoedown.git
11-
branch = rust-2015-09-21-do-not-delete
128
[submodule "src/jemalloc"]
139
path = src/jemalloc
1410
url = https://github.com/rust-lang/jemalloc.git

src/Cargo.lock

+36-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/libcore/result.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -838,10 +838,10 @@ impl<T: Default, E> Result<T, E> {
838838
///
839839
/// assert_eq!(1909, good_year);
840840
/// assert_eq!(0, bad_year);
841+
/// ```
841842
///
842843
/// [`parse`]: ../../std/primitive.str.html#method.parse
843844
/// [`FromStr`]: ../../std/str/trait.FromStr.html
844-
/// ```
845845
#[inline]
846846
#[stable(feature = "result_unwrap_or_default", since = "1.16.0")]
847847
pub fn unwrap_or_default(self) -> T {

src/librustdoc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
authors = ["The Rust Project Developers"]
33
name = "rustdoc"
44
version = "0.0.0"
5-
build = "build.rs"
65

76
[lib]
87
name = "rustdoc"
@@ -26,6 +25,7 @@ rustc_trans = { path = "../librustc_trans" }
2625
serialize = { path = "../libserialize" }
2726
syntax = { path = "../libsyntax" }
2827
syntax_pos = { path = "../libsyntax_pos" }
28+
pulldown-cmark = { version = "0.0.14", default-features = false }
2929

3030
[build-dependencies]
3131
build_helper = { path = "../build_helper" }

src/librustdoc/build.rs

-29
This file was deleted.

0 commit comments

Comments
 (0)