From 301f2eda1a08c5ca84f6098e15e4e0a71e371f14 Mon Sep 17 00:00:00 2001 From: Eric Scouten Date: Thu, 25 Jul 2024 17:15:40 -0700 Subject: [PATCH] Fix docs to avoid inadvertent list syntax (Thank you, Clippy!) --- src/xmp_meta.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/xmp_meta.rs b/src/xmp_meta.rs index 474b9ff..9ac1a75 100644 --- a/src/xmp_meta.rs +++ b/src/xmp_meta.rs @@ -998,11 +998,11 @@ impl XmpMeta { /// Creates or sets the value of an item within an array. /// - /// Items are accessed by an integer index, where the first item has index - /// 1. This function creates the item if necessary, but the array itself - /// must already exist. Use [`XmpMeta::append_array_item`] to create - /// arrays. A new item is automatically appended if the index is the array - /// size plus 1. + /// Items are accessed by an integer index, where the first item has + /// index 1. This function creates the item if necessary, but the array + /// itself must already exist. Use [`XmpMeta::append_array_item`] to + /// create arrays. A new item is automatically appended if the index is + /// the array size plus 1. /// /// Use `XmpMeta::compose_array_item_path` to create a complex path. ///