Skip to content
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

minor doc tweaks #227

Merged
merged 2 commits into from
Apr 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ struct Kopium {
/// Elide the following containers from the output
///
/// This allows manual customization of structs from the output without having to remove it from
/// the output first.
/// the output first. Takes precise generated struct names.
#[arg(long, short = 'e')]
elide: Vec<String>,

Expand All @@ -97,10 +97,10 @@ struct Kopium {
#[arg(long)]
relaxed: bool,

/// Enable generation of custom Condition APIs.
/// Disable standardised Condition API
///
/// If false, it detects if a particular path is an array of Condition objects and uses a standard
/// Condition API instead of generating a custom definition.
/// By default, kopium detects Condition objects and uses a standard
/// Condition API from k8s_openapi instead of generating a custom definition.
#[arg(long)]
no_condition: bool,

Expand Down
Loading