Skip to content

Commit d60d484

Browse files
authored
chore(operator): Fix cargo doc warning (#1282)
1 parent c1c9b4b commit d60d484

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

‎crates/stackable-operator/src/v2/env_overrides.rs‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ use crate::v2::builder::pod::container::{EnvVarName, EnvVarSet};
1616
/// invalid names are accepted on `apply` and only rejected later, when the operator deserializes
1717
/// the resource.
1818
///
19-
/// This uses a `BTreeMap<EnvVarName, String>` rather than an
20-
/// [`EnvVarSet`](crate::v2::builder::pod::container::EnvVarSet), because for overrides only plain
21-
/// values are supported at the moment. An `EnvVarSet` maps each name to a full `EnvVar`, which also
22-
/// allows the other variants (such as `valueFrom`); those are intentionally not exposed here.
19+
/// This uses a `BTreeMap<EnvVarName, String>` rather than an [`EnvVarSet`], because for overrides
20+
/// only plain values are supported at the moment. An `EnvVarSet` maps each name to a full `EnvVar`,
21+
/// which also allows the other variants (such as `valueFrom`); those are intentionally not exposed
22+
/// here.
2323
#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
2424
pub struct EnvOverrides(BTreeMap<EnvVarName, String>);
2525

0 commit comments

Comments
 (0)