diff --git a/metagpt/ext/stanford_town/memory/scratch.py b/metagpt/ext/stanford_town/memory/scratch.py index b4036f839f..7208305058 100644 --- a/metagpt/ext/stanford_town/memory/scratch.py +++ b/metagpt/ext/stanford_town/memory/scratch.py @@ -123,7 +123,7 @@ def get_f_daily_schedule_index(self, advance=0): OUTPUT an integer value for the current index of f_daily_schedule. """ - # We first calculate teh number of minutes elapsed today. + # We first calculate the number of minutes elapsed today. today_min_elapsed = 0 today_min_elapsed += self.curr_time.hour * 60 today_min_elapsed += self.curr_time.minute @@ -158,7 +158,7 @@ def get_f_daily_schedule_hourly_org_index(self, advance=0): OUTPUT an integer value for the current index of f_daily_schedule. """ - # We first calculate teh number of minutes elapsed today. + # We first calculate the number of minutes elapsed today. today_min_elapsed = 0 today_min_elapsed += self.curr_time.hour * 60 today_min_elapsed += self.curr_time.minute