This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch avro-3814/schema-resolution-union
in repository https://gitbox.apache.org/repos/asf/avro.git

commit b59966881a10a358cdacd178daeb5ab1d55ad7c7
Author: Rik Heijdens <[email protected]>
AuthorDate: Fri Jul 28 13:30:20 2023 +0200

    AVRO-3814: Remove confusing comments
---
 lang/rust/avro/src/schema.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lang/rust/avro/src/schema.rs b/lang/rust/avro/src/schema.rs
index 78a900cae..22307d4e4 100644
--- a/lang/rust/avro/src/schema.rs
+++ b/lang/rust/avro/src/schema.rs
@@ -5313,7 +5313,7 @@ mod tests {
             }),
         };
 
-        // Serialize using the writer schema (newer).
+        // Serialize using the writer schema.
         let writer_schema = Schema::parse(&writer_schema)?;
         let avro_value = crate::to_value(s)?;
         assert!(
@@ -5322,7 +5322,7 @@ mod tests {
         );
         let datum = crate::to_avro_datum(&writer_schema, avro_value)?;
 
-        // Now, attempt to deserialize using the reader schema (older).
+        // Now, attempt to deserialize using the reader schema.
         let reader_schema = Schema::parse(&reader_schema)?;
         let mut x = &datum[..];
 

Reply via email to