From db09f3c0cfb14b0d4ff1aeb162322672d1c1fc96 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 31 Jul 2022 12:36:51 +0200 Subject: [PATCH] Improve docstring of `load_files` --- src/data/load.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/load.rs b/src/data/load.rs index 234cc7b..eaa2d59 100644 --- a/src/data/load.rs +++ b/src/data/load.rs @@ -34,7 +34,7 @@ fn load_file_and_warn(path: PathBuf) -> Vec { } -/// Load all possible data files. +/// Create a [Vec] of all cards contained in the data files. pub fn load_files() -> Vec { glob("./data/*/en_us/data/*.json") .unwrap()