-
Notifications
You must be signed in to change notification settings - Fork 0
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
chore: Switch on missing_docs
#106
Conversation
Resolves: #29 Signed-off-by: Vaibhav Rabber <[email protected]>
Apart from proto struct headings, I don't think anything else should be left. |
/// Name of a basin. | ||
/// | ||
/// Must be between 8 and 48 characters in length. Must comprise lowercase | ||
/// letters, numbers, and hyphens. Cannot begin or end with a hyphen. | ||
#[derive(Debug, Clone)] | ||
pub struct BasinName(String); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah this duplicates with what sync_docs syncs on CreateBasinRequest
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some duplication is inevitable I suppose. The CreateBasinRequest
has:
/// Basin name, which must be globally unique. It can be omitted to let the service assign a unique name.
which is irrelevant.
Signed-off-by: Vaibhav Rabber <[email protected]>
Signed-off-by: Vaibhav Rabber <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Resolves: #29