We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm currently learning Rust and I noticed that the following comment in the "Testcase: List" section (https://doc.rust-lang.org/rust-by-example/hello/print/print_display/testcase_list.html) could be more precise:
Current comment :
// Extract the value using tuple indexing, // and create a reference to `vec`. let vec = &self.0;
This could, maybe, be improved to:
// Create a reference to the Vector<i32> stored in the List struct let vec = &self.0;
I'm still learning, so I'm open to any feedback or explanations if I've misunderstood something.
Thank you for everything that you do! 🙏
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm currently learning Rust and I noticed that the following comment in the "Testcase: List" section (https://doc.rust-lang.org/rust-by-example/hello/print/print_display/testcase_list.html) could be more precise:
Current comment :
This could, maybe, be improved to:
I'm still learning, so I'm open to any feedback or explanations if I've misunderstood something.
Thank you for everything that you do! 🙏
The text was updated successfully, but these errors were encountered: