mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-31 16:06:31 +00:00 
			
		
		
		
	Fix the formatting
This commit is contained in:
		| @@ -141,8 +141,8 @@ pub fn run_benches(c: &mut criterion::Criterion, confs: &[Conf]) { | ||||
| } | ||||
|  | ||||
| pub fn documents_from(filename: &str, filetype: &str) -> DocumentsBatchReader<impl BufRead + Seek> { | ||||
|     let reader = | ||||
|         File::open(filename).unwrap_or_else(|_| panic!("could not find the dataset in: {}", filename)); | ||||
|     let reader = File::open(filename) | ||||
|         .unwrap_or_else(|_| panic!("could not find the dataset in: {}", filename)); | ||||
|     let reader = BufReader::new(reader); | ||||
|     let documents = match filetype { | ||||
|         "csv" => documents_from_csv(reader).unwrap(), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user