From 3a438a38682adeb77488dd4123974b5c82ad59d3 Mon Sep 17 00:00:00 2001 From: Vidit Ostwal Date: Tue, 28 Jan 2025 19:55:19 +0530 Subject: [PATCH] Fixed typo --- docs/concepts/crews.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/concepts/crews.mdx b/docs/concepts/crews.mdx index b9606263b..bd520da4b 100644 --- a/docs/concepts/crews.mdx +++ b/docs/concepts/crews.mdx @@ -252,8 +252,7 @@ If you want to save the logs as a list of JSON events, set `save_as_json` parame crew = Crew(output_log_file = True, save_as_json = False) # Logs will be saved as logs.txt crew = Crew(output_log_file = file_name, save_as_json = False) # Logs will be saved as file_name.txt crew = Crew(output_log_file = True, save_as_json = True) # Logs will be saved as logs.json -crew = Crew(output_log_file = file_name, save_as_json = False) # Logs will be saved as file_name.json - +crew = Crew(output_log_file = file_name, save_as_json = True) # Logs will be saved as file_name.json ```