-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
A small section of futures in the tutorial on tasks and correction to the doc in future.rs #6537
Conversation
osaut
commented
May 16, 2013
- The example given in future.rs was corrected.
- I have added a small section describing futures in tutorial on tasks. It is far from being complete as I am stil learning !
…n as it is now included by default in prelude.rs
Many thanks to dbaupp ! |
fn partial_sum(start: uint) -> f64 { | ||
let mut local_sum = 0f64; | ||
for uint::range(start*100000, (start+1)*100000) |num| { | ||
local_sum += (num as f64 + 1).pow(-2.0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made a mistake on the gist btw, the + 1
here needs to be + 1.0
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My bad, I should have double-checked. I have just made a fix for it.
AFAIK the failures are not related to this PR (which only changes docs). |
…n as it is now included by default in prelude.rs
[beta] Backport of rust-lang#6375 - field_reassign_with_default fix With the pinned nightly we can test backports to our beta branch now 🎉 cc rust-lang#6515 changelog: beta 1.50: Backport of private fields fix in [`field_reassign_with_default`] lints