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

Link to tutorial gives 403 forbidden #11373

Closed
zachallett opened this issue Jan 7, 2014 · 1 comment
Closed

Link to tutorial gives 403 forbidden #11373

zachallett opened this issue Jan 7, 2014 · 1 comment

Comments

@zachallett
Copy link

The link in the README.md links off to http://static.rust-lang.org/doc/0.9/tutorial.html which gives a 403 forbidden.

@alexcrichton
Copy link
Member

Ah sorry about that, we're in the transitionary period where we haven't yet released 0.9, but we've updated most version numbers to 0.9.

In the meantime, the docs are all accessible via the home page: http://www.rust-lang.org/

Expect an 0.9 release soon!

flip1995 pushed a commit to flip1995/rust that referenced this issue Aug 24, 2023
Added new lint: `reserve_after_initialization`

Closes rust-lang/rust-clippy#11330.

A new lint that informs the user about a more concise way to create a vector with a known capacity.
Example:
```rust
let mut v: Vec<usize> = vec![];
v.reserve(10);
```

Produces the following help:
```rust
  |
2 | /     let mut v: Vec<usize> = vec![];
3 | |     v.reserve(10);
  | |__________________^ help: consider using `Vec::with_capacity(space_hint)`: `let v: Vec<usize> = Vec::with_capacity(10);`
  |
```

And can be rewritten as:
```rust
let v: Vec<usize> = Vec::with_capacity(10);
```

changelog: new lint [`reserve_after_initialization`]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants