Skip to content

Commit ebc0f7b

Browse files
chore: Fix Rustdoc warning
1 parent d059219 commit ebc0f7b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

rust/stackable-cockpit/src/constants.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ pub const HELM_OCI_REGISTRY: &str = "oci://oci.stackable.tech/sdp-charts";
2828
pub const HELM_DEFAULT_CHART_VERSION: &str = "0.0.0-dev";
2929

3030
/// Tuple of (product name, group, version, kind)
31-
/// Group is usually "<product name>.stackable.tech".
32-
/// The version is currently hard-coded to "v1alpha1".
33-
/// Kind is usually "<product name with a capitalized first letter>Cluster".
31+
/// Group is usually `<product name>.stackable.tech`.
32+
/// The version is currently hard-coded to `v1alpha1`.
33+
/// Kind is usually `<product name with a capitalized first letter>Cluster`.
3434
/// But there are exceptions.
3535
pub const PRODUCTS: &[(&str, &str, &str, &str)] = &[
3636
(
@@ -46,23 +46,23 @@ pub const PRODUCTS: &[(&str, &str, &str, &str)] = &[
4646
("kafka", "kafka.stackable.tech", "v1alpha1", "KafkaCluster"),
4747
("nifi", "nifi.stackable.tech", "v1alpha1", "NifiCluster"),
4848
("opa", "opa.stackable.tech", "v1alpha1", "OpaCluster"),
49-
// Kind is "OpenSearchCluster" instead of "OpensearchCluster".
49+
// Kind is `OpenSearchCluster` instead of `OpensearchCluster`.
5050
(
5151
"opensearch",
5252
"opensearch.stackable.tech",
5353
"v1alpha1",
5454
"OpenSearchCluster",
5555
),
56-
// Group is "spark.stackable.tech" instead of "spark-connect.stackable.tech".
57-
// Kind is "SparkConnectServer" instead of "Spark-connectCluster".
56+
// Group is `spark.stackable.tech` instead of `spark-connect.stackable.tech`.
57+
// Kind is `SparkConnectServer` instead of `Spark-connectCluster`.
5858
(
5959
"spark-connect",
6060
"spark.stackable.tech",
6161
"v1alpha1",
6262
"SparkConnectServer",
6363
),
64-
// Group is "spark.stackable.tech" instead of "spark-history.stackable.tech".
65-
// Kind is "SparkHistoryServer" instead of "Spark-historyCluster".
64+
// Group is `spark.stackable.tech` instead of `spark-history.stackable.tech`.
65+
// Kind is `SparkHistoryServer` instead of `Spark-historyCluster`.
6666
(
6767
"spark-history",
6868
"spark.stackable.tech",

0 commit comments

Comments
 (0)