Skip to content

Conversation

@mlfarrell
Copy link
Contributor

No description provided.

@mlfarrell mlfarrell marked this pull request as ready for review December 23, 2025 19:29
@mlfarrell
Copy link
Contributor Author

no rush. not merging til after holiday

Comment on lines +368 to +371
/// The response from the `EntityGetChildUuid` command.
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
pub struct EntityDeleteChild {
}
Copy link
Contributor

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 {
}
Suggested change
/// 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

Fix in Graphite


Is this helpful? React 👍 or 👎 to let us know.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants