-
Notifications
You must be signed in to change notification settings - Fork 2
Solid modeling apis #1021
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
base: main
Are you sure you want to change the base?
Solid modeling apis #1021
Conversation
|
no rush. not merging til after holiday |
modeling-cmds/src/ok_response.rs
Outdated
| /// The response from the `EntityGetChildUuid` command. | ||
| #[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)] | ||
| pub struct EntityDeleteChild { | ||
| } |
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.
The documentation comment is incorrect and references the wrong command.
The comment says EntityGetChildUuid but the struct is EntityDeleteChild. This is a copy-paste error that will mislead developers and create confusion in generated documentation.
Fix:
/// The response from the `EntityDeleteChild` command.
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
pub struct EntityDeleteChild {
}| /// The response from the `EntityGetChildUuid` command. | |
| #[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)] | |
| pub struct EntityDeleteChild { | |
| } | |
| /// The response from the `EntityDeleteChild` command. | |
| #[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)] | |
| pub struct EntityDeleteChild { | |
| } |
Spotted by Graphite Agent
Is this helpful? React 👍 or 👎 to let us know.
No description provided.