1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-04 11:39:42 +02:00

Merge pull request #129 from hezhizhen/patch-1

Fix typo in `structure.md`
This commit is contained in:
Andrew Walbran 2023-01-09 10:14:57 +00:00 committed by GitHub
commit ba275812aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ days:
* Day 1: Basic Rust, ownership and the borrow checker.
* Day 2: Compound data types, pattern matching, the standard library.
* Day 3: Traits and generics, error handling, testing, unsafe Rust.
* Day 4: Concurrency in Rust and interoperatibilty with other languages
* Day 4: Concurrency in Rust and interoperability with other languages
> **Exercise for Day 4:** Do you interface with some C/C++ code in your project
> which we could attempt to move to Rust? The fewer dependencies the better.