From a5a80ffaea283eb1377359e7222bfa5fbbde384c Mon Sep 17 00:00:00 2001 From: PSeitz Date: Wed, 2 Nov 2022 06:37:27 +0100 Subject: [PATCH] Update fastfield_codecs/src/column.rs Co-authored-by: Paul Masurel --- fastfield_codecs/src/column.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastfield_codecs/src/column.rs b/fastfield_codecs/src/column.rs index 492c34dc7..47f23d315 100644 --- a/fastfield_codecs/src/column.rs +++ b/fastfield_codecs/src/column.rs @@ -240,7 +240,7 @@ where // and we do not have any specialized implementation anyway. } -/// Wraps anything that returns an iterator into a `Column`. +/// Wraps an iterator into a `Column`. pub struct IterColumn(T); impl From for IterColumn