Skip to content

Commit

Permalink
fix: docs gen in vlen_v2_codec macro
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Feb 3, 2025
1 parent 0532fe9 commit 9070e12
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ macro_rules! vlen_v2_codec {
#[cfg(feature = "async")]
use crate::array::codec::{AsyncArrayPartialDecoderTraits, AsyncBytesPartialDecoderTraits};

/// The `$identifier` codec implementation.
#[doc = concat!("The `", $identifier, "` codec implementation.")]
#[derive(Debug, Clone)]
pub struct $struct {
inner: Arc<VlenV2Codec>,
}

impl $struct {
/// Create a new `$identifier` codec.
#[doc = concat!("Create a new `", $identifier, "` codec.")]
#[must_use]
pub fn new() -> Self {
Self {
Expand Down

0 comments on commit 9070e12

Please sign in to comment.