diff --git a/0_basics/README.md b/0_basics/README.md index 8cb70f7..872fffe 100644 --- a/0_basics/README.md +++ b/0_basics/README.md @@ -28,8 +28,6 @@ After completing these steps, you should be able to answer (and understand why) - What are lifetimes? Which problems do they solve? Which benefits do they give? - Is [Rust] OOP language? Is it possible to use SOLID/GRASP? Does it have an inheritance? -After you're done notify your lead in an appropriate PR (pull request), and he will exam what you have learned. - _Additional_ articles, which may help to understand the above topic better: - [Chris Morgan: Rust ownership, the hard way][1] - [Adolfo OchagavĂ­a: You are holding it wrong][12] diff --git a/README.md b/README.md index 0efe7dd..c975256 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,7 @@ This project represents a hard-way step-by-step [Rust] learning course from lang ### Before you start -1. [Create][1] a new [GitHub repository] for yourself using this one [as template][11]. -2. [Invite as a collaborator][12] of your repository the person you want to review your lessons (mentor or lead). +[Create][1] a new [GitHub repository] for yourself using this one [as template][11]. > __NOTE__: __This learning course is constantly improving and evolving over time.__ > @@ -69,10 +68,6 @@ This project represents a hard-way step-by-step [Rust] learning course from lang Each step must be performed as a separate [PR (pull request)][PR] with an appropriate name and checkmarked here in README's schedule after completion. Each step is a [Cargo workspace member][13], so you can run/test it from the project root (i.e. `cargo run -p step_1_8`). __Consider to use [rustfmt] and [Clippy] when you're writing [Rust] code.__ -Each step has the estimated time for completion. If any deeper investigation on step's theme is needed by you, then it's on your own. - -Do not hesitate to ask your mentor/lead with questions, however you won't receive any concrete answer, but rather a direction for your own investigation. _Mentor/Lead is the one who asks questions here, demanding concrete and complete answers._ - - [ ] [0. Become familiar with Rust basics][Step 0] (3 days) - [ ] [1. Concepts][Step 1] (2 days, after all sub-steps) - [ ] [1.1. Default values, cloning and copying][Step 1.1] (1 day)