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 8 pull requests #40138

Closed
wants to merge 30 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
7e0c3de
Remove `else`, unindent.
frewsxcv Feb 19, 2017
de2f7e1
Rewrite `match` to use combinators.
frewsxcv Feb 19, 2017
83fe48d
Remove `else`, unindent.
frewsxcv Feb 19, 2017
a97aed7
Remove unnecessary logic when finding simpilar `impl` candidates.
frewsxcv Feb 19, 2017
2436d73
Extract out error message generation.
frewsxcv Feb 19, 2017
10639d7
Add early return, remove `else`, unindent.
frewsxcv Feb 19, 2017
23d9211
Flatten `for` loop using iterator combinators.
frewsxcv Feb 19, 2017
a754ea6
Move `TraitRef` `impl` next to `struct` definition.
frewsxcv Feb 20, 2017
5b504b7
Replace ./configure with config.toml in README.md and CONTRIBUTING.md
keeperofdakeys Feb 23, 2017
babcfb9
Add back make depednency and msvc instructions
keeperofdakeys Feb 23, 2017
a00ab04
Invoke dist with --install
keeperofdakeys Feb 23, 2017
32a4248
Update wording of location to copy config.toml
keeperofdakeys Feb 23, 2017
6c79a0e
Fix debuginfo reference
keeperofdakeys Feb 23, 2017
e2e85b7
Update notes regarding ./configure and configuration
keeperofdakeys Feb 23, 2017
8c8eda8
Fix nightly-only experimental API display
GuillaumeGomez Feb 23, 2017
7803039
travis: Fuchsia builder
petrhosek Feb 17, 2017
bf878c8
Mention windows ABIs explicitly in README.md
keeperofdakeys Feb 26, 2017
2c695d7
List windows i686 ABIs
keeperofdakeys Feb 26, 2017
8079bf3
Example for how to provide stdin using std::process::Command
robinst Feb 27, 2017
e998666
Remove unnecessary "for"
koba-e964 Feb 27, 2017
b70f929
Make lifetime elision docs clearer
MajorBreakfast Feb 27, 2017
988be44
Add compile fail test for unboxed_closures feature
topecongiro Feb 23, 2017
1a2a2e4
Rollup merge of #39918 - petrhosek:fuchsia-ci, r=alexcrichton
frewsxcv Feb 28, 2017
0eba1b5
Rollup merge of #39977 - frewsxcv:error-reporting-cleanup, r=eddyb
frewsxcv Feb 28, 2017
f190779
Rollup merge of #40047 - topecongiro:master, r=est31
frewsxcv Feb 28, 2017
81ef1f9
Rollup merge of #40056 - keeperofdakeys:contributing, r=alexcrichton
frewsxcv Feb 28, 2017
8ca232f
Rollup merge of #40057 - GuillaumeGomez:html-issue, r=frewsxcv
frewsxcv Feb 28, 2017
46691a5
Rollup merge of #40122 - robinst:process-add-example-for-writing-to-s…
frewsxcv Feb 28, 2017
3d86647
Rollup merge of #40124 - koba-e964:patch-1, r=steveklabnik
frewsxcv Feb 28, 2017
94f5742
Rollup merge of #40131 - MajorBreakfast:patch-3, r=steveklabnik
frewsxcv Feb 28, 2017
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
Prev Previous commit
Next Next commit
Remove unnecessary "for"
  • Loading branch information
koba-e964 authored Feb 27, 2017
commit e998666a776dc73bd7c1c2ca7edde8ece48dfd36
2 changes: 1 addition & 1 deletion src/doc/book/src/procedural-macros.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ pub fn hello_world(input: TokenStream) -> TokenStream {
So there is a lot going on here. We have introduced two new crates: [`syn`] and
[`quote`]. As you may have noticed, `input: TokenSteam` is immediately converted
to a `String`. This `String` is a string representation of the Rust code for which
we are deriving `HelloWorld` for. At the moment, the only thing you can do with a
we are deriving `HelloWorld`. At the moment, the only thing you can do with a
`TokenStream` is convert it to a string. A richer API will exist in the future.

So what we really need is to be able to _parse_ Rust code into something
Expand Down