Skip to content

Commit 7cf2855

Browse files
committed
Remove problematic empty lines
rustfmt added trailing whitespaces, which collided with the trailing-whitespace check
1 parent 7690e04 commit 7cf2855

File tree

1 file changed

+0
-8
lines changed
  • crates/stackable-versioned-macros/src

1 file changed

+0
-8
lines changed

crates/stackable-versioned-macros/src/lib.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -230,12 +230,10 @@ mod utils;
230230
/// #[versioned(
231231
/// version(name = "v1alpha1"),
232232
/// version(name = "v1beta1"),
233-
///
234233
/// options(k8s(
235234
/// // Highly experimental conversion tracking. Opting into this feature will
236235
/// // introduce frequent breaking changes.
237236
/// experimental_conversion_tracking,
238-
///
239237
/// // Enables instrumentation and log events via the tracing crate.
240238
/// enable_tracing,
241239
/// ))
@@ -329,28 +327,22 @@ mod utils;
329327
/// // **Required.** Set the group of the CRD, usually the domain of the
330328
/// // company, like `example.com`.
331329
/// group = "example.com",
332-
///
333330
/// // Override the kind field of the CRD. This defaults to the struct
334331
/// // name (without the `Spec` suffix). Overriding this value will also
335332
/// // influence the names of other generated items, like the status
336333
/// // struct (if used) or the version enum.
337334
/// kind = "CustomKind",
338-
///
339335
/// // Set the singular name. Defaults to lowercased `kind` value.
340336
/// singular = "...",
341-
///
342337
/// // Set the plural name. Defaults to inferring from singular.
343338
/// plural = "...",
344-
///
345339
/// // Indicate that this is a namespaced scoped resource rather than a
346340
/// // cluster scoped resource.
347341
/// namespaced,
348-
///
349342
/// // Set the specified struct as the status subresource. If conversion
350343
/// // tracking is enabled, this struct will be automatically merged into
351344
/// // the generated tracking status struct.
352345
/// status = "FooStatus",
353-
///
354346
/// // Set a shortname. This can be specified multiple times.
355347
/// shortname = "..."
356348
/// ))]

0 commit comments

Comments
 (0)