From e7db2c0184613dd2790bf26b847fc19acbf060ed Mon Sep 17 00:00:00 2001 From: Thomas BESSOU Date: Sun, 20 Oct 2024 17:37:40 +0200 Subject: [PATCH] wip --- serde_avro_fast/src/schema/safe/mod.rs | 4 ++-- serde_avro_fast/src/ser/mod.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/serde_avro_fast/src/schema/safe/mod.rs b/serde_avro_fast/src/schema/safe/mod.rs index 6af3c0d..4e6d13d 100644 --- a/serde_avro_fast/src/schema/safe/mod.rs +++ b/serde_avro_fast/src/schema/safe/mod.rs @@ -166,7 +166,7 @@ pub struct SchemaNode { } impl SchemaNode { - /// Build a new [`SchemaNode`] from the given regular type, with no logical + /// Build a `SchemaNode` from the given regular type, with no logical /// type. /// /// This is equivalent to `type_.into()`. @@ -174,7 +174,7 @@ impl SchemaNode { type_.into() } - /// Build a new [`SchemaNode`] from the given regular type and logical type. + /// Build a `SchemaNode` from the given regular type and logical type. pub fn with_logical_type(type_: RegularType, logical_type: LogicalType) -> Self { Self { type_, diff --git a/serde_avro_fast/src/ser/mod.rs b/serde_avro_fast/src/ser/mod.rs index 9e3934f..683569c 100644 --- a/serde_avro_fast/src/ser/mod.rs +++ b/serde_avro_fast/src/ser/mod.rs @@ -118,7 +118,7 @@ pub struct SerializerConfig<'s> { } impl<'s> SerializerConfig<'s> { - /// Build a new `SerializerConfig` with a given `schema`, default options + /// Build a `SerializerConfig` with a given `schema`, default options /// and empty serialization buffers. /// /// The `schema` will be used when instantiating a serializer from this