From fb9ff3f849d02d4739b804e36a1dca692666be6f Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Thu, 31 Oct 2024 09:04:45 -0600 Subject: [PATCH] docs: slight tweaks --- crates/core/src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/core/src/lib.rs b/crates/core/src/lib.rs index 096760c3..eae97e0f 100644 --- a/crates/core/src/lib.rs +++ b/crates/core/src/lib.rs @@ -42,7 +42,8 @@ //! //! # [Value] //! -//! A [Value] can represent any of the three core data structures, as well as an [ItemCollection], akin to [serde_json::Value]: +//! A [Value] can represent any of the three core data structures or an [ItemCollection]. +//! It's the [serde_json::Value] for **stac-rs**: //! //! ``` //! use stac::{Value, Item}; @@ -85,7 +86,7 @@ //! stac::write("an-id.json", stac::Item::new("an-id")).unwrap(); //! ``` //! -//! Enable the `object-store` feature to get and put objects from e.g. AWS s3 (with the `object-store-aws` feature) or from other backends (see [features](#features) for a complete listing): +//! Enable the `object-store` feature to get and put objects from cloud storage, e.g. s3 (with the `object-store-aws` feature) or from other backends (see [features](#features) for a complete listing): //! //! ```no_run //! use stac::Item;