From b12e108548b82d9573504eabfa39fc8b47e642f3 Mon Sep 17 00:00:00 2001 From: Sahil Kariyania Date: Sun, 14 Jan 2024 23:13:46 +0530 Subject: [PATCH] update readme - rust print statement --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 343c73f601..b02610d516 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ async fn main() -> Result<(), DeltaTableError> { // show all active files in the table let files = table.get_files(); - println!("{files}"); + println!("{:?}", files); Ok(()) }