-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Missing documentation for while keyword #60736
Comments
These are probably just missing because nobody added documentation for them yet, so feel free to send a PR. |
If anyone is interested, you need to add documentation here: https://github.com/rust-lang/rust/blob/master/src/libstd/keyword_docs.rs |
I will take care of this one :) |
Cool! Wanted to do it, but haven't been able to start on it yet. Perfect if you can take it over. |
In that case, it will be nice to have you review the PR: #60761. |
while keyword is used to define while loops in rust. Fixes rust-lang#60736.
Partially resolved by #60817 |
#60761 will close this when merged, and it addresses |
Document `while` keyword This is a rework of rust-lang#60761. Closes rust-lang#60736 r? @dtolnay
Document `while` keyword This is a rework of rust-lang#60761. Closes rust-lang#60736 r? @dtolnay
I noticed the
while
keyword seems to be missing from the official documentation. Keywords likeloop
andfor
are documented. Nor doeswhile
come up when searching at the top.Is there a reason for it missing?
The text was updated successfully, but these errors were encountered: