Skip to content

Commit

Permalink
Auto merge of #40338 - GuillaumeGomez:pulldown-switch, r=frewsxcv,ste…
Browse files Browse the repository at this point in the history
…veklabnik

Replace hoedown with pull in rustdoc

cc @rust-lang/docs
  • Loading branch information
bors committed Mar 29, 2017
2 parents 4465f22 + a7c6d3e commit abf5592
Show file tree
Hide file tree
Showing 12 changed files with 555 additions and 522 deletions.
4 changes: 0 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@
[submodule "src/compiler-rt"]
path = src/compiler-rt
url = https://github.com/rust-lang/compiler-rt.git
[submodule "src/rt/hoedown"]
path = src/rt/hoedown
url = https://github.com/rust-lang/hoedown.git
branch = rust-2015-09-21-do-not-delete
[submodule "src/jemalloc"]
path = src/jemalloc
url = https://github.com/rust-lang/jemalloc.git
Expand Down
62 changes: 36 additions & 26 deletions src/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/libcore/result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -838,10 +838,10 @@ impl<T: Default, E> Result<T, E> {
///
/// assert_eq!(1909, good_year);
/// assert_eq!(0, bad_year);
/// ```
///
/// [`parse`]: ../../std/primitive.str.html#method.parse
/// [`FromStr`]: ../../std/str/trait.FromStr.html
/// ```
#[inline]
#[stable(feature = "result_unwrap_or_default", since = "1.16.0")]
pub fn unwrap_or_default(self) -> T {
Expand Down
2 changes: 1 addition & 1 deletion src/librustdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
authors = ["The Rust Project Developers"]
name = "rustdoc"
version = "0.0.0"
build = "build.rs"

[lib]
name = "rustdoc"
Expand All @@ -26,6 +25,7 @@ rustc_trans = { path = "../librustc_trans" }
serialize = { path = "../libserialize" }
syntax = { path = "../libsyntax" }
syntax_pos = { path = "../libsyntax_pos" }
pulldown-cmark = { version = "0.0.14", default-features = false }

[build-dependencies]
build_helper = { path = "../build_helper" }
Expand Down
29 changes: 0 additions & 29 deletions src/librustdoc/build.rs

This file was deleted.

Loading

0 comments on commit abf5592

Please sign in to comment.