From a39199e9f7169c1c29b51e1692db39bd237fe06d Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 27 May 2018 19:39:50 -0700 Subject: [PATCH] Reword Avro blurb - Emphasize the association with Apache Hadoop, - Rephrase "schematized data" because that term returns not many Google results, doesn't seem widely recognized. --- serde/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/serde/src/lib.rs b/serde/src/lib.rs index 6448aaf3..6777cd1d 100644 --- a/serde/src/lib.rs +++ b/serde/src/lib.rs @@ -52,8 +52,8 @@ //! - [Pickle], a format common in the Python world. //! - [Hjson], a variant of JSON designed to be readable and writable by humans. //! - [BSON], the data storage and network transfer format used by MongoDB. -//! - [Avro], a binary data serialization format with support for -//! schematized data. +//! - [Avro], a binary format used within Apache Hadoop, with support for schema +//! definition. //! - [URL], the x-www-form-urlencoded format. //! - [XML], the flexible machine-friendly W3C standard. //! *(deserialization only)*