Update fastfield_codecs/src/column.rs

Co-authored-by: Paul Masurel <paul@quickwit.io>
This commit is contained in:
PSeitz
2022-11-02 06:37:27 +01:00
committed by GitHub
parent 83325d8f3f
commit a5a80ffaea

View File

@@ -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>(T);
impl<T> From<T> for IterColumn<T>