Skip to content

Commit

Permalink
Fix typo 'recieved'> 'received'
Browse files Browse the repository at this point in the history
Noticed this typo in the debug output of OI :)
Did a further spell check using Bing Chat (yes, really) and didn't find any other real typo's.
  • Loading branch information
merlinfrombelgium authored and jordanbtucker committed Sep 14, 2023
1 parent eaaa56b commit be0fc2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interpreter/code_interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def save_and_display_stream(self, stream, is_error_stream):
for line in iter(stream.readline, ''):

if self.debug_mode:
print("Recieved output line:")
print("Received output line:")
print(line)
print("---")

Expand Down

0 comments on commit be0fc2d

Please sign in to comment.