1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-24 00:30:29 +02:00

Merge pull request #25 from kianmeng/misc-doc-fixes

Misc doc fixes
This commit is contained in:
Martin Geisler 2022-12-23 11:19:45 +01:00 committed by GitHub
commit bbc98a44ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/book/ /book/
/target/ /target/
Cargo.lock

View File

@ -3,7 +3,7 @@
The Rust community has created a wealth of high-quality and free resources The Rust community has created a wealth of high-quality and free resources
online. online.
## Offical Documentation ## Official Documentation
The Rust project hosts many resources. These cover Rust in general: The Rust project hosts many resources. These cover Rust in general:

View File

@ -1,6 +1,6 @@
# `Vec` # `Vec`
[`Vec`][1] is the standard resizeable heap-allocated buffer: [`Vec`][1] is the standard resizable heap-allocated buffer:
```rust,editable ```rust,editable
fn main() { fn main() {