Skip to content
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

Rollup of 16 pull requests #36021

Closed
wants to merge 39 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
e4dd785
Correct formatting docs: fmt::Result != io::Result<()>
Stebalien Aug 20, 2016
f2655e2
Note that formatters should not return spurious errors.
Stebalien Aug 20, 2016
31b7ff4
refactor range examples
matthew-piziak Aug 17, 2016
33560ee
add links to interesting items in `std::ptr` documentation
matthew-piziak Aug 21, 2016
a377adb
Improve Path and PathBuf docs
GuillaumeGomez Aug 18, 2016
f397005
Update E0389 to the new format. #35630
ahmedcharles Aug 13, 2016
c7d5f7e
Rust has type aliases, not typedefs.
Stebalien Aug 23, 2016
b400a43
add `fn main` wrappers to enable Rust Playground "Run" button
matthew-piziak Aug 23, 2016
ff3a761
add more-evocative examples for `Shl` and `Shr`
matthew-piziak Aug 20, 2016
711333f
add a note that whitespace alignment is nonidiomatic
matthew-piziak Aug 23, 2016
bf22a7a
Updated code sample in chapter on syntax extensions.
regexident Aug 24, 2016
6f93d3c
Make E0094 underline better
kyrias Aug 24, 2016
874a20d
Update E0277 to new error format
0xmohit Aug 25, 2016
905644d
Rename {uint,int} methods to {usize,isize}.
frewsxcv Aug 24, 2016
00d4a43
Remove style guide.
steveklabnik Jul 29, 2016
57719e2
Also remove build steps for style
steveklabnik Aug 25, 2016
cf8e1fe
add a simple example for `thread::current()`
matthew-piziak Aug 25, 2016
aeedf22
Add E0525 error explanation
GuillaumeGomez Aug 25, 2016
88e4def
Update E0453 to new error format
0xmohit Aug 25, 2016
a9907a1
Small error code explanations improvements
GuillaumeGomez Aug 25, 2016
3e1b33d
Add new error code tests
GuillaumeGomez Aug 25, 2016
e2d9974
improve `BitAnd` trait documentation
matthew-piziak Aug 25, 2016
70aa463
add stronger warning to CString::from_raw
durka Aug 26, 2016
fdf00dc
Rollup merge of #35124 - steveklabnik:remove_style, r=aturon
steveklabnik Aug 26, 2016
89293c2
Rollup merge of #35657 - ahmedcharles:e0389, r=jonathandturner
steveklabnik Aug 26, 2016
47ba4fe
Rollup merge of #35759 - matthew-piziak:refactor-range-examples, r=st…
steveklabnik Aug 26, 2016
bfeb433
Rollup merge of #35786 - GuillaumeGomez:paths_doc, r=steveklabnik
steveklabnik Aug 26, 2016
fd71e9a
Rollup merge of #35862 - Stebalien:fmt-docs, r=steveklabnik
steveklabnik Aug 26, 2016
2fa5d00
Rollup merge of #35863 - matthew-piziak:shl-example, r=steveklabnik
steveklabnik Aug 26, 2016
0d0e4c0
Rollup merge of #35880 - matthew-piziak:ptr-linking, r=steveklabnik
steveklabnik Aug 26, 2016
d0ad4c0
Rollup merge of #35962 - regexident:compiler-plugin-docs, r=steveklabnik
steveklabnik Aug 26, 2016
1e43633
Rollup merge of #35977 - frewsxcv:usize-isize, r=eddyb
steveklabnik Aug 26, 2016
b0c686a
Rollup merge of #35980 - kyrias:E0094-underline, r=jonathandturner
steveklabnik Aug 26, 2016
d10dfdb
Rollup merge of #35985 - 0xmohit:pr/error-code-E0277, r=jonathandturner
steveklabnik Aug 26, 2016
9088b74
Rollup merge of #35989 - 0xmohit:pr/error-code-E0453, r=jonathandturner
steveklabnik Aug 26, 2016
1c69b3a
Rollup merge of #35993 - matthew-piziak:bitwise-and-redux, r=Guillaum…
steveklabnik Aug 26, 2016
2a6bf70
Rollup merge of #35997 - matthew-piziak:thread-current-example, r=Gui…
steveklabnik Aug 26, 2016
98660c7
Rollup merge of #36003 - GuillaumeGomez:err_codes, r=jonathandturner
steveklabnik Aug 26, 2016
bb1102a
Rollup merge of #36018 - durka:patch-28, r=steveklabnik
steveklabnik Aug 26, 2016
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
9 changes: 1 addition & 8 deletions mk/docs.mk
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ ERR_IDX_GEN_MD = $(RPATH_VAR2_T_$(CFG_BUILD)_H_$(CFG_BUILD)) $(ERR_IDX_GEN_EXE)

D := $(S)src/doc

DOC_TARGETS := book nomicon style error-index
DOC_TARGETS := book nomicon error-index
COMPILER_DOC_TARGETS :=
DOC_L10N_TARGETS :=

Expand Down Expand Up @@ -209,13 +209,6 @@ doc/nomicon/index.html: $(RUSTBOOK_EXE) $(wildcard $(S)/src/doc/nomicon/*.md) |
$(Q)rm -rf doc/nomicon
$(Q)$(RUSTBOOK) build $(S)src/doc/nomicon doc/nomicon

style: doc/style/index.html

doc/style/index.html: $(RUSTBOOK_EXE) $(wildcard $(S)/src/doc/style/*.md) | doc/
@$(call E, rustbook: $@)
$(Q)rm -rf doc/style
$(Q)$(RUSTBOOK) build $(S)src/doc/style doc/style

error-index: doc/error-index.html

# Metadata used to generate the index is created as a side effect of
Expand Down
6 changes: 3 additions & 3 deletions src/doc/book/compiler-plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ extern crate rustc;
extern crate rustc_plugin;

use syntax::parse::token;
use syntax::ast::TokenTree;
use syntax::tokenstream::TokenTree;
use syntax::ext::base::{ExtCtxt, MacResult, DummyResult, MacEager};
use syntax::ext::build::AstBuilder; // trait for expr_usize
use syntax_pos::Span;
use syntax::ext::quote::rt::Span;
use rustc_plugin::Registry;

fn expand_rn(cx: &mut ExtCtxt, sp: Span, args: &[TokenTree])
Expand All @@ -69,7 +69,7 @@ fn expand_rn(cx: &mut ExtCtxt, sp: Span, args: &[TokenTree])
}

let text = match args[0] {
TokenTree::Token(_, token::Ident(s, _)) => s.to_string(),
TokenTree::Token(_, token::Ident(s)) => s.to_string(),
_ => {
cx.span_err(sp, "argument should be a single identifier");
return DummyResult::any(sp);
Expand Down
64 changes: 0 additions & 64 deletions src/doc/style/README.md

This file was deleted.

50 changes: 0 additions & 50 deletions src/doc/style/SUMMARY.md

This file was deleted.

3 changes: 0 additions & 3 deletions src/doc/style/errors/README.md

This file was deleted.

66 changes: 0 additions & 66 deletions src/doc/style/errors/ergonomics.md

This file was deleted.

7 changes: 0 additions & 7 deletions src/doc/style/errors/handling.md

This file was deleted.

8 changes: 0 additions & 8 deletions src/doc/style/errors/propagation.md

This file was deleted.

125 changes: 0 additions & 125 deletions src/doc/style/errors/signaling.md

This file was deleted.

9 changes: 0 additions & 9 deletions src/doc/style/features/README.md

This file was deleted.

6 changes: 0 additions & 6 deletions src/doc/style/features/crates.md

This file was deleted.

Loading